uni

University stuff
git clone git://git.margiolis.net/uni.git
Log | Files | Refs | README | LICENSE

Gem.cc (202B)


      1 #include "Gem.hpp"
      2 
      3 Gem::Gem(int x, int y, char sym)
      4 	:x(x), y(y), sym(sym)
      5 {
      6 }
      7 
      8 int
      9 Gem::get_x() const
     10 {
     11 	return x;
     12 }
     13 
     14 int
     15 Gem::get_y() const
     16 {
     17 	return y;
     18 }
     19 
     20 char
     21 Gem::get_sym() const
     22 {
     23 	return sym;
     24 }