-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatchvs.js
More file actions
25 lines (24 loc) · 810 Bytes
/
Matchvs.js
File metadata and controls
25 lines (24 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
let engine;
let response = {};
let MsMatchInfo;
let MsCreateRoomInfo;
let MsRoomFilterEx;
let LocalStore_Clear;
try {
engine = new window.MatchvsEngine();
response = new window.MatchvsResponse();
MsMatchInfo = window.MsMatchInfo;
MsCreateRoomInfo = window.MsCreateRoomInfo;
MsRoomFilterEx = window.MsRoomFilterEx ;
LocalStore_Clear = window.LocalStore_Clear;
} catch (e) {
console.warn("load matchvs fail,"+e.message);
}
module.exports = {
engine: engine,
response: response,
MsMatchInfo: MsMatchInfo,
MsCreateRoomInfo: MsCreateRoomInfo,
MsRoomFilterEx :MsRoomFilterEx ,
LocalStore_Clear:LocalStore_Clear,
};