cleanup and instrumentation

This commit is contained in:
Erris
2026-01-25 16:12:32 +01:00
parent c8cfed58da
commit 736591415c
61 changed files with 845 additions and 383 deletions

View File

@@ -1,13 +1,14 @@
#ifndef INPUT_HPP
#define INPUT_HPP
#include "../core.hpp"
#include "open_engine/core.hpp"
#include <map>
#define MAX_AXIS 10
namespace OpenEngine {
class OE_API Input
class Input
{
public:
virtual ~Input() = default;

View File

@@ -1,7 +1,7 @@
#ifndef LINUX_INPUT_HPP
#define LINUX_INPUT_HPP
#include "input_system.hpp"
#include "open_engine/input/input_system.hpp"
namespace OpenEngine {
class LinuxInput : public Input