21 lines
253 B
Go
21 lines
253 B
Go
package mob
|
|
|
|
import "lab.zaar.be/thefish/alchemyst-go/engine/types"
|
|
|
|
type Mob struct {
|
|
*types.Appearance
|
|
types.Coords
|
|
BlocksPass bool
|
|
}
|
|
|
|
func (m *Mob) Walk(dx, dy int) {
|
|
|
|
}
|
|
|
|
func (m *Mob) Render() {
|
|
|
|
}
|
|
|
|
func (m *Mob) MoveToCoords(c types.Coords) {
|
|
|
|
} |