felt/models/models.go

25 lines
281 B
Go
Raw Normal View History

package models
import (
"time"
)
type TableKey struct {
name: string
passcode: string
}
type DiceRoll struct {
faces: uint8
roll: uint8[]
player: string
note: string
timestamp: time.Time
}
type Token struct {
id: string
spriteUri: string
x: int
y: int
}