From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- core/image.hh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 core/image.hh (limited to 'core/image.hh') diff --git a/core/image.hh b/core/image.hh deleted file mode 100644 index 92d99be..0000000 --- a/core/image.hh +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef CORE_IMAGE_HH -#define CORE_IMAGE_HH 1 -#pragma once - -constexpr static unsigned int IMAGE_LOAD_GRAY = 0x0001U; -constexpr static unsigned int IMAGE_LOAD_FLIP = 0x0002U; - -struct Image final { - stbi_uc* pixels; - glm::ivec2 size; -}; - -#endif /* CORE_IMAGE_HH */ -- cgit