コード例 #1
0
ファイル: Game.go プロジェクト: toophy/go-gameserver
func OnCreatureTurn(_creature interfaces.ICreature, _direction uint16) {
	if _direction != _creature.GetDirection() {
		_creature.Turn(_direction)
	}
}