Stores the primary TJS game setting keys w/ GameSettingOptions.

interface GameSettingBase {
    key: string;
    namespace: string;
    options: CoreSetting;
}

Properties

Properties

key: string

The setting key to register.

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: CoreSetting

Core game setting configuration options.