8 lines
131 B
Go
8 lines
131 B
Go
package component
|
|
|
|
import "github.com/kercylan98/minotaur/game"
|
|
|
|
type LockstepClient[ID comparable] interface {
|
|
game.Player[ID]
|
|
}
|