Files
PlanetFleet/key.cpp
T
2021-10-27 21:37:09 +03:00

14 lines
314 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;
}
}
}