InputEvent.h改名为EventDispatch.h

This commit is contained in:
2025-06-27 03:03:33 +08:00
parent 9eabdaf1d1
commit b02fc4d13c
5 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
#ifndef HGL_IO_KEYBOARD_EVENT_INCLUDE
#define HGL_IO_KEYBOARD_EVENT_INCLUDE
#include<hgl/io/event/InputEvent.h>
#include<hgl/io/event/EventDispatch.h>
namespace hgl
{
namespace io

View File

@@ -1,6 +1,6 @@
#pragma once
#include<hgl/io/event/InputEvent.h>
#include<hgl/io/event/EventDispatch.h>
#include<hgl/math/Vector.h>
namespace hgl::io
{

View File

@@ -1,7 +1,7 @@
#ifndef HGL_IO_WINDOW_EVENT_INCLUDE
#define HGL_IO_WINDOW_EVENT_INCLUDE
#include<hgl/io/event/InputEvent.h>
#include<hgl/io/event/EventDispatch.h>
namespace hgl
{
namespace io

View File

@@ -193,7 +193,7 @@ SET(IO_TEXT_FILES IO/TextOutputStream.cpp
SET(INPUT_EVENT_FILES ${IO_INCLUDE_PATH}/event/KeyboardEvent.h
${IO_INCLUDE_PATH}/event/MouseEvent.h
${IO_INCLUDE_PATH}/event/JoystickEvent.h
${IO_INCLUDE_PATH}/event/InputEvent.h
${IO_INCLUDE_PATH}/event/EventDispatch.h
${IO_INCLUDE_PATH}/event/InputMapping.h
)