File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ export type { UnknownPrefabComponents } from './types/UnknownPrefabComponents.js
37
37
export type { UnsupportedPrefabComponents } from './types/UnsupportedPrefabComponents.js' ;
38
38
export type { Velocity } from './types/Velocity.js' ;
39
39
40
- /* Enums and enum-likes */
41
- export { ATTPrefabs } from './types/ATTPrefabs.js' ;
40
+ /* Enums */
42
41
export { ComponentHash } from './types/ComponentHash.js' ;
42
+ export { LogicOperator } from './types/LogicOperator.js' ;
43
43
export { PhysicalMaterialPartHash } from './types/PhysicalMaterialPartHash.js' ;
44
44
export { PopulationDefinitionHash } from './types/PopulationDefinitionHash.js' ;
45
45
export { PresetHash } from './types/PresetHash.js' ;
@@ -52,6 +52,7 @@ export { BinaryWriter } from './BinaryWriter.js';
52
52
53
53
/* Prefabs */
54
54
export { Prefab } from './Prefab.js' ;
55
+ export { ATTPrefabs } from './types/ATTPrefabs.js' ;
55
56
56
57
/* Components */
57
58
export { BasicDecayComponent } from './components/BasicDecayComponent.js' ;
Original file line number Diff line number Diff line change
1
+ export enum LogicOperator {
2
+ And = 0 ,
3
+ Or = 1 ,
4
+ Xor = 2 ,
5
+ Nand = 3 ,
6
+ Toggle = 4
7
+ }
You can’t perform that action at this time.
0 commit comments