57 lines
759 B
TypeScript
57 lines
759 B
TypeScript
// 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":'
|
|
];
|