This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
development: | |
adapter: postgresql | |
database: library | |
username: postgres | |
password: xxx | |
host: localhost | |
port: 5432 | |
pool: 5 | |
timeout: 5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CustomGame extends UTGame; | |
static event class<GameInfo> SetGameType(string MapName, string Options, string Portal) { | |
`log("CustomGame.SetGameType: =================================================="); | |
return Default.class; | |
} | |
event InitGame( string Options, out string ErrorMessage ) { | |
`log("CustomGame.InitGame: ------------------------------------------------------"); | |
super.InitGame(Options,ErrorMessage); |