15 lines
274 B
C
15 lines
274 B
C
|
#ifndef HOLESOME_ITRACKABLE_H
|
||
|
#define HOLESOME_ITRACKABLE_H
|
||
|
|
||
|
#include <SFML/System/Vector2.hpp>
|
||
|
|
||
|
class ITrackable
|
||
|
{
|
||
|
public:
|
||
|
virtual sf::Vector2f getTrackablePosition() const = 0;
|
||
|
|
||
|
virtual sf::Vector2f getTrackableSize() const = 0;
|
||
|
};
|
||
|
|
||
|
#endif //HOLESOME_ITRACKABLE_H
|