summaryrefslogtreecommitdiff
path: root/engine/utils/dictionary.ts
blob: 5a19c6d620326ee51e3b77a9459dc482a1f54d5d (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
// basically a list of common strings between network components to help in compression
// can't be longer than 254 "words"
export default [
  '{',
  '}',
  ',',
  '"',
  "'",
  ',',
  '1',
  '2',
  '3',
  '4',
  '5',
  '6',
  '7',
  '8',
  '9',
  '0',
  '.',
  'Map',
  '[',
  ']',
  'BoundingBox',
  'args',
  'height',
  'width',
  'name',
  'body',
  'Velocity',
  'Control',
  'Component',
  'NEW_ENTITIES',
  'REMOVE_ENTITIES',
  'UPDATE_ENTITIES',
  'NEW_INPUT',
  'REMOVE_INPUT',
  'boundingBox',
  'dTheta',
  'id',
  'Forces',
  ':',
  'control',
  'controllableBy',
  'dimension',
  'rotation',
  'forces',
  'velocity',
  'center',
  'dCartesian',
  'x',
  'y',
  '"body":[{"args":{',
  'controlVelocityComponent',
  '"boundingBox":{"center":'
];