uni

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

Gnome.hpp (173B)


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