library/src/KeyCode.cpp

10 lines
117 B
C++

#include "KeyCode.h"
KeyCode::KeyCode(int value) : value(value) {}
int KeyCode::getValue() {
return value;
}