generated from nhcarrigan/template
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
/**
|
|
* @file Schema version tracking for game state.
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
/**
|
|
* The current game state schema version. Bump this whenever a breaking change is made to GameState.
|
|
*/
|
|
export const currentSchemaVersion = 2;
|