ArtifactEngine/Client/LocalPlayer.cpp
2026-04-06 20:37:58 -04:00

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)) {
}
}
}