17 lines
238 B
C++
17 lines
238 B
C++
#include "LocalPlayer.h"
|
|
|
|
#include "Platform/Window.h"
|
|
|
|
namespace Artifact {
|
|
|
|
void LocalPlayer::init() {
|
|
window = client->subsystem<WindowImpl>();
|
|
}
|
|
|
|
void LocalPlayer::tick() {
|
|
if (window->isKeyDown(Key::W)) {
|
|
|
|
}
|
|
}
|
|
|
|
}
|