Add descriptions to the option objects

This commit is contained in:
Oliver Akins 2022-03-13 01:45:32 -06:00
parent ee40351d1b
commit 8eb4a3c48f
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99
3 changed files with 19 additions and 4 deletions

View file

@ -0,0 +1,7 @@
export interface IGameOption {
name: string;
id: string;
active: boolean;
hidden: boolean;
description: string;
}