mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-27 03:53:33 +00:00
14 lines
313 B
C++
Executable File
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;
|
|
}
|
|
}
|
|
}
|