Create input service

This commit is contained in:
Vulpovile
2023-11-09 11:24:08 -08:00
parent 3928307609
commit bb06376719
4 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
//Should potentially make a "Service" class
#pragma once
#include "Instance.h"
namespace B3D{
class InputService : public Instance{
InputService(void);
InputService~(void);
pollKeyState(int key);
}
}