12 lines
152 B
Go
12 lines
152 B
Go
|
|
package gamedata
|
||
|
|
|
||
|
|
type GameEvent int
|
||
|
|
|
||
|
|
const (
|
||
|
|
GameEventPlayerDeath = iota
|
||
|
|
GameEventCharge
|
||
|
|
GameEventNewShot
|
||
|
|
GameEventTargetHit
|
||
|
|
GameEventExplosion
|
||
|
|
)
|