2023-04-03 06:24:47 +00:00
|
|
|
// 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]
|
2023-04-03 07:17:01 +00:00
|
|
|
type CardOption = cardsim.CardOption[*KoboldMine]
|