Saxum/trigger.hh

16 lines
288 B
C++
Raw Normal View History

#ifndef TRIGGER_HH_INCLUDED
#define TRIGGER_HH_INCLUDED
#include <vector>
class Trigger {
public:
2014-12-15 12:39:24 +00:00
Trigger(std::vector<float> position, float distance, bool isBigger, int objectIndex, int functionPointer);
Trigger();
~Trigger();
private:
};
#endif