uni

University stuff
git clone git://git.christosmarg.xyz/uni-assignments.git
Log | Files | Refs | README | LICENSE

Potter.hpp (178B)


      1 #ifndef _POTTER_HPP_
      2 #define _POTTER_HPP_
      3 
      4 #include "Movable.hpp"
      5 
      6 class Potter: public Movable {
      7 public:
      8 	Potter(int x, int y, int dir, char sym);
      9 };
     10 
     11 #endif /* _POTTER_HPP_ */