diff options
| author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-22 13:55:57 +0100 | 
|---|---|---|
| committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-22 13:55:57 +0100 | 
| commit | 2882e217aa5354a6befdddaa2de886f66ff40879 (patch) | |
| tree | 45346f07fa89a9adc24909731c456b336fda3daf /src | |
| parent | 15220fd01798d88a3c1acd21b6b1220c1273c1ee (diff) | |
fixed some includes
Diffstat (limited to 'src')
| -rw-r--r-- | src/crepe/system/InputSystem.cpp | 4 | ||||
| -rw-r--r-- | src/crepe/system/InputSystem.h | 3 | 
2 files changed, 2 insertions, 5 deletions
| diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp index b4a0633..a366d34 100644 --- a/src/crepe/system/InputSystem.cpp +++ b/src/crepe/system/InputSystem.cpp @@ -2,7 +2,7 @@  #include "../facade/SDLContext.h"  #include "../manager/ComponentManager.h"  #include "../manager/EventManager.h" -#include "util/Log.h" +#include "../api/Config.h"  #include "InputSystem.h" @@ -213,7 +213,7 @@ bool InputSystem::is_mouse_inside_button(  	const Transform & cam_transform  ) {  	vec2 actual_pos = transform.position + button.offset; -	if (!button.world_space) { +	if (!button.data.world_space) {  		actual_pos += cam_transform.position;  	}  	vec2 half_dimensions = button.dimensions / 2; diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h index 37311cc..21a3dfb 100644 --- a/src/crepe/system/InputSystem.h +++ b/src/crepe/system/InputSystem.h @@ -1,12 +1,9 @@  #pragma once -#include "../api/Config.h"  #include "../facade/EventData.h" -  #include "../api/Event.h"  #include "../api/Metadata.h"  #include "../types.h" -#include "../util/OptionalRef.h"  #include "System.h" |