2019-11-05 17:55:38 +03:00

20 lines
253 B
Go

package mob
import (
"lab.zaar.be/thefish/alchemyst-go/engine/types"
"reflect"
)
type Mob struct {
*types.Appearance
types.Coords
BlocksPass bool
}
func (m *Mob) Render() {
}
func (mob Mob) TypeOf() reflect.Type {
return reflect.TypeOf(mob)
}