game_sync/gamesrv/slotspkg/slots/intf/callback.go

14 lines
209 B
Go

package intf
// Callback is the interface to insert procedure to entity
type Callback interface {
OnInit()
OnStepBegin()
BeforeSpin()
BeforeDisplay()
AfterDisplay()
AfterSpin()
OnStepEnd()
OnStay()
}