| 123456789101112131415161718192021 |
- package TribalSlot
- import (
- "bet24.com/log"
- "bet24.com/servers/games/slotcommon"
- )
- const LogColor = log.Green
- var logic *GameLogic
- func Run(slotSink slotcommon.SlotSink) {
- logic = NewGameLogic(slotSink)
- logic.run()
- }
- func OnGameMessage(userId int, msg, data string) {
- logic.onTribalSlotMessage(userId, msg, data)
- }
- func OnUserExit(userId int) {
- logic.userExit(userId)
- }
|