ENUM

ConfigurationOptionType

The primitive type of the value a configuration option accepts.

  • enum ConfigurationOptionType {
  • # This option will be treated as a UTF-8 string.
  • STRING
  • # This option will be treated as a file system path.
  • #
  • # If this is a game configuration, this will usually be relative
  • # to the game file system root.
  • PATH
  • # This option is a true or false value.
  • BOOLEAN
  • # This option is an integer value.
  • INTEGER
  • # This option is a rational value with unspecified precision.
  • DECIMAL
  • # This value is a choice out of a limited set of choices.
  • SELECTION
  • # This value is a GUID representing a file record
  • RESOURCE
  • }