14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
export declare enum CompressedFlags {
|
|
None = 0,
|
|
ScratchPad = 1,
|
|
Tree = 2,
|
|
HasText = 4,
|
|
HasParticles = 8,
|
|
HasSound = 16,
|
|
HasParent = 32,
|
|
TextureAnimation = 64,
|
|
HasAngularVelocity = 128,
|
|
HasNameValues = 256,
|
|
MediaURL = 512,
|
|
}
|