game_object.cpp 99 B

123456789
  1. #include "game_object.hpp"
  2. game_object::game_object(int X,int Y,int ID){
  3. x=X,
  4. y=Y;
  5. id=ID;
  6. }