2018-10-12 17:31:14 +01:00
|
|
|
import { ITreeBoundingBox } from './ITreeBoundingBox';
|
2018-10-16 16:46:58 +01:00
|
|
|
import { UUID } from '../UUID';
|
|
|
|
|
import { PCode } from '../../enums/PCode';
|
2017-12-14 02:06:28 +00:00
|
|
|
export interface IGameObject {
|
2018-10-16 16:46:58 +01:00
|
|
|
ID: number;
|
|
|
|
|
FullID: UUID;
|
|
|
|
|
ParentID: number;
|
|
|
|
|
OwnerID: UUID;
|
|
|
|
|
IsAttachment: boolean;
|
|
|
|
|
PCode: PCode;
|
2018-10-12 17:31:14 +01:00
|
|
|
rtreeEntry?: ITreeBoundingBox;
|
2017-12-14 02:06:28 +00:00
|
|
|
hasNameValueEntry(key: string): boolean;
|
|
|
|
|
getNameValueEntry(key: string): string;
|
|
|
|
|
}
|