Skip to content
Snippets Groups Projects
Select Git revision
  • f1e63dc8a0157117cd578ff9088a5df859ef6aef
  • main default
  • master
  • tests
  • HTMXMigration
  • StageToFront
  • RandomnessGeneration
  • StageImpl
8 results

Stage.go

Blame
  • user avatar
    ForkBench authored
    f1e63dc8
    History
    Stage.go 297 B
    package services
    
    // Stage : Stage details
    type Stage interface {
    	PlayerPosition(player Player) uint16
    	AddPlayer(player Player) bool
    	RemovePlayer(player Player) bool
    	GetID() uint8
    	GetState() State
    	GetPlayers() []Player
    	Register() bool
    	Start() bool
    	End() bool
    	Lock() bool
    	Build() bool
    }