main.go 358 B

1234567891011121314151617
  1. package slotpanda
  2. func Run() {
  3. getGameLogic()
  4. }
  5. func GetSlotConfig(userId int) string {
  6. return getGameLogic().getSlotConfig(userId)
  7. }
  8. func Spin(userId int, amount int, isChip bool, extra string) (bool, int, string) {
  9. return getGameLogic().spin(userId, amount, isChip, extra)
  10. }
  11. func Dump(param1, param2 string) {
  12. getGameLogic().dump(param1, param2)
  13. }