Saxum/trigger.hh

16 lines
281 B
C++
Raw Normal View History

#ifndef TRIGGER_HH_INCLUDED
#define TRIGGER_HH_INCLUDED
#include <vector>
class Trigger {
public:
Trigger(std::vec<float> position, float distance, bool isBigger, objectIndex, int functionPointer);
Trigger();
~Trigger();
private:
};
#endif