-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths2clientprotocol.min.js
44 lines (39 loc) · 1.56 KB
/
s2clientprotocol.min.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var s2clientprotocol = (function (exports) {
'use strict';
// var path = require('path');
// var common_pb = require(path.resolve(__dirname, './common_pb.js'));
// var data_pb = require(path.resolve(__dirname, './data_pb.js'));
// var debug_pb = require(path.resolve(__dirname, './debug_pb.js'));
// var error_pb = require(path.resolve(__dirname, './error_pb.js'));
// var query_pb = require(path.resolve(__dirname, './query_pb.js'));
// var raw_pb = require(path.resolve(__dirname,'./raw_pb.js'));
// var sc2api_pb = require(path.resolve(__dirname,'./sc2api_pb.js'));
// var score_pb = require(path.resolve(__dirname,'./score_pb.js'));
// var spatial_pb = require(path.resolve(__dirname,'./spatial_pb.js'));
// var ui_pb = require(path.resolve(__dirname,'./ui_pb.js'));
var common_pb = require('./common_pb.js');
var data_pb = require('./data_pb.js');
var debug_pb = require('./debug_pb.js');
var error_pb = require('./error_pb.js');
var query_pb = require('./query_pb.js');
var raw_pb = require('./raw_pb.js');
var sc2api_pb = require('./sc2api_pb.js');
var score_pb = require('./score_pb.js');
var spatial_pb = require('./spatial_pb.js');
var ui_pb = require('./ui_pb.js');
var sc2clientprotocol = {
common_pb,
data_pb,
debug_pb,
error_pb,
query_pb,
raw_pb,
sc2api_pb,
score_pb,
spatial_pb,
ui_pb,
};
module.exports = sc2clientprotocol;
exports.default = sc2clientprotocol;
return exports;
}({}));