src/caves/entities/aspects/mobile.clj @ 35acf92fe597

MOAR
author Steve Losh <steve@stevelosh.com>
date Wed, 11 Jul 2012 12:43:30 -0400
parents 9770861b040f
children b894c3ffe436
(ns caves.entities.aspects.mobile)


(defprotocol Mobile
  (move [this world dest]
        "Move this entity to a new location.")
  (can-move? [this world dest]
             "Return whether the entity can move to the new location."))