5 lines
126 B
TypeScript
5 lines
126 B
TypeScript
export interface IGameObject {
|
|
hasNameValueEntry(key: string): boolean;
|
|
getNameValueEntry(key: string): string;
|
|
}
|