mirror of
https://github.com/psforever/PSF-LoginServer.git
synced 2026-01-19 18:44:45 +00:00
* Move /common/src to /src * Move services to net.psforever package * Move /pslogin to /server
22 lines
323 B
INI
22 lines
323 B
INI
# This is a comment
|
|
[default]
|
|
string = a string
|
|
string_quoted = "a string"
|
|
int = 31
|
|
time = 1 second
|
|
time2 = 100 milliseconds
|
|
float = 0.1
|
|
bool_true = yes
|
|
bool_false = no
|
|
enum_dog = Dog
|
|
# missing
|
|
|
|
[bad]
|
|
bad_int = not a number
|
|
bad_time = 10
|
|
bad_float = A
|
|
bad_bool = dunno
|
|
bad_int_range = -1
|
|
bad_int_range2 = 3
|
|
bad_enum = Tree
|