11 lines
346 B
Go
11 lines
346 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]
|