Gem.hpp (215B)
1 #ifndef _GEM_HPP_ 2 #define _GEM_HPP_ 3 4 class Gem { 5 private: 6 int x; 7 int y; 8 char sym; 9 10 public: 11 Gem(int x, int y, char sym); 12 13 int get_x() const; 14 int get_y() const; 15 char get_sym() const; 16 }; 17 18 #endif /* _GEM_HPP_ */