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