#ifndef _SIGHTING_HH_ #define _SIGHTING_HH_ #include #include "vehicles/vehicle.hh" class Vehicle; class Sighting { public: float posX, posZ; long round; Vehicle * who; //this is stupid Sighting( GLfloat, GLfloat, Vehicle * ); Sighting(); }; class FlagSighting{ public: float posX, posZ; long round; FlagSighting( GLfloat, GLfloat); }; #endif