#ifndef POINT_H #define POINT_H #include "gameentity.h" class Point : public GameEntity { public: enum { Type = UserType + Transmission::point }; public: Point(QGraphicsItem *parent=0); virtual ~Point() {}; virtual EnteredState enter(Actor *actor); virtual void onDie(Actor *actor); }; #endif // POINT_H