Files
PlanetFleet/Key.cpp
T
2021-10-19 20:15:01 +03:00

14 lines
313 B
C++
Executable File

#include"Key.h"
namespace game{
namespace core{
Key::Key(Bind bind, int trigger, bool key, bool analog) {
this->bind = bind;
this->trigger = trigger;
this->key = key;
this->analog = analog;
beingUsed = false;
}
}
}