Require player data to exist

This commit is contained in:
2020-08-23 00:19:30 -04:00
parent dca2ce0599
commit 4fd93b6c9e
3 changed files with 115 additions and 1 deletions

View File

@ -0,0 +1,10 @@
package gameworld
type Faction int
const (
FactionBurningWall = 1
FactionLunaki = 2
FactionRegium = 3
FactionElectus = 4
)