From 2032daa62db8c2c70ab36ee14f0f4e87c2a68278 Mon Sep 17 00:00:00 2001 From: Frederico Linhares Date: Tue, 4 Oct 2022 17:55:15 -0300 Subject: buil Use SDL_MAIN_HANDLED to compile engine on Windows --- src/pgm_image.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pgm_image.hpp') diff --git a/src/pgm_image.hpp b/src/pgm_image.hpp index ef9607d..bda73ca 100644 --- a/src/pgm_image.hpp +++ b/src/pgm_image.hpp @@ -17,8 +17,6 @@ #ifndef CANDY_GEAR_PGM_IMAGE_H #define CANDY_GEAR_PGM_IMAGE_H 1 -#include - struct PGMImage_s { int width, height, max_value, data_size; @@ -28,7 +26,9 @@ struct PGMImage_s typedef struct PGMImage_s PGMImage; -bool PGMImage_constructor(PGMImage *self, const char *file_path); -void PGMImage_destructor(PGMImage *self); +bool +PGMImage_constructor(PGMImage *self, const char *file_path); +void +PGMImage_destructor(PGMImage *self); #endif /* CANDY_GEAR_PGM_IMAGE_H */ -- cgit v1.2.3