Files
node-metaverse/lib/classes/interfaces/IGameObject.ts

6 lines
127 B
TypeScript

export interface IGameObject
{
hasNameValueEntry(key: string): boolean;
getNameValueEntry(key: string): string;
}