11 lines
143 B
Go
11 lines
143 B
Go
package gameworld
|
|
|
|
type Faction int
|
|
|
|
const (
|
|
FactionBurningWall = 1
|
|
FactionLunaki = 2
|
|
FactionRegium = 3
|
|
FactionElectus = 4
|
|
)
|