Files
node-metaverse/lib/events/NewObjectEvent.ts
2025-01-17 23:53:31 +00:00

11 lines
274 B
TypeScript

import type { GameObject } from '../classes/public/GameObject';
import type { UUID } from '../classes/UUID';
export class NewObjectEvent
{
public objectID: UUID;
public localID: number;
public object: GameObject;
public createSelected: boolean;
}