20 lines
278 B
Go
20 lines
278 B
Go
package mob
|
|
|
|
import (
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/ecs"
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
|
)
|
|
|
|
type Mob struct {
|
|
*types.Appearance
|
|
types.Coords
|
|
BlocksPass bool
|
|
}
|
|
|
|
func (m *Mob) Render() {
|
|
|
|
}
|
|
|
|
func (mob Mob) Type() string {
|
|
return ecs.MobComponent
|
|
} |