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

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


(defprotocol Digger
  (dig [this world target]
       "Dig a location.")
  (can-dig? [this world target]
            "Return whether the entity can dig the new location."))