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