Fixed the trigger skeleton

This commit is contained in:
Steffen Fündgens 2014-12-15 13:39:24 +01:00
parent 2e472f8921
commit 81bead5a97
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#include "trigger.hh"
Trigger::Trigger(std::vec<float> position, float distance, bool isBigger, objectIndex, int functionPointer) {
Trigger::Trigger(std::vector<float> position, float distance, bool isBigger, int objectIndex, int functionPointer) {
}
Trigger::Trigger(){

View File

@ -5,7 +5,7 @@
class Trigger {
public:
Trigger(std::vec<float> position, float distance, bool isBigger, objectIndex, int functionPointer);
Trigger(std::vector<float> position, float distance, bool isBigger, int objectIndex, int functionPointer);
Trigger();
~Trigger();
private: