mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
14 lines
314 B
C++
Executable File
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;
|
|
}
|
|
}
|
|
}
|