Merge branch 'master' of https://github.com/Faerbit/swp
This commit is contained in:
commit
fdeb783055
11
trigger.cc
Normal file
11
trigger.cc
Normal file
@ -0,0 +1,11 @@
|
||||
#include "trigger.hh"
|
||||
|
||||
Trigger::Trigger(std::vector<float> position, float distance, bool isBigger, int objectIndex, int functionPointer) {
|
||||
|
||||
}
|
||||
|
||||
Trigger::Trigger(){
|
||||
}
|
||||
|
||||
Trigger::~Trigger(){
|
||||
}
|
15
trigger.hh
Normal file
15
trigger.hh
Normal file
@ -0,0 +1,15 @@
|
||||
#ifndef TRIGGER_HH_INCLUDED
|
||||
#define TRIGGER_HH_INCLUDED
|
||||
|
||||
#include <vector>
|
||||
|
||||
class Trigger {
|
||||
public:
|
||||
Trigger(std::vector<float> position, float distance, bool isBigger, int objectIndex, int functionPointer);
|
||||
Trigger();
|
||||
~Trigger();
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user