12 lines
396 B
Go
12 lines
396 B
Go
// This file contains type aliases to abbreviate otherwise-verbose fully
|
|
// quallified type names from cardsim, as used by koboldsim.
|
|
|
|
package koboldsim
|
|
|
|
import "git.chromaticdragon.app/kistaro/CardSimEngine/cardsim"
|
|
|
|
type Player = cardsim.Player[*KoboldMine]
|
|
type Card = cardsim.Card[*KoboldMine]
|
|
type InfoPanel = cardsim.InfoPanel[*KoboldMine]
|
|
type CardOption = cardsim.CardOption[*KoboldMine]
|