From 518619603ab3c49b7fdfcf19c439c1a30668164f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 2 Apr 2015 15:28:31 -0600 Subject: Everything works, it could use more stuff. --- src/worm.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/worm.h (limited to 'src/worm.h') diff --git a/src/worm.h b/src/worm.h new file mode 100644 index 0000000..2c02e76 --- /dev/null +++ b/src/worm.h @@ -0,0 +1,23 @@ +#ifndef WORM_H +#define WORH_H + +#include "position.h" + +class Map; + +class Worm +{ +public: + Worm( int iId, const Position &rpStart, Map &rMap ); + virtual ~Worm(); + + bool timestep(); + +private: + int iId; + Position pCur; + Map &rMap; + int iDist; +}; + +#endif -- cgit v1.2.3