10 lines
131 B
TypeScript
10 lines
131 B
TypeScript
/**
|
|
* Game class for managing game state and logic
|
|
*/
|
|
class Game {
|
|
/**
|
|
* Starts the game
|
|
*/
|
|
public start = () => {};
|
|
}
|