Interface GameSettingBase
interface GameSettingBase {
key: string;
namespace?: string;
options: CoreSetting;
store?: MinimalWritable<any>;
}
key: string;
namespace?: string;
options: CoreSetting;
store?: MinimalWritable<any>;
}
Index
Properties
Properties
key
key: string
The setting key to register.
Optionalnamespace
namespace?: string
The setting namespace; usually the ID of the package. If not provided the associated namespace with the
instance of TJSGameSettings will be used.
options
Core game setting configuration options.
Optionalstore
An existing store instance to use.
Defines a game setting.