diff options
author | Frederico Linhares <fred@linhares.blue> | 2025-03-12 20:40:25 -0300 |
---|---|---|
committer | Frederico Linhares <fred@linhares.blue> | 2025-03-12 20:40:25 -0300 |
commit | 96228c92004fefae3cb3392c20d90ec4ede753cd (patch) | |
tree | 3fa37641dbc915ddf1096efd6e21ddcb3884fe78 /src/candy_gear/core.hpp | |
parent | daa767aa5ea95fa2386c5ecaff31bd5598c43700 (diff) |
refa Move initialization code to BluCat
Diffstat (limited to 'src/candy_gear/core.hpp')
-rw-r--r-- | src/candy_gear/core.hpp | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/candy_gear/core.hpp b/src/candy_gear/core.hpp index 60d8339..e3288b4 100644 --- a/src/candy_gear/core.hpp +++ b/src/candy_gear/core.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2022-2024 Frederico de Oliveira Linhares + * Copyright 2022-2025 Frederico de Oliveira Linhares * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,19 +24,6 @@ #include <mruby/dump.h> #include <mruby/variable.h> -#define SDL_MAIN_HANDLED - -#ifdef _WIN64 -#include <Windows.h> -#endif - -#include <SDL2/SDL.h> -#include <SDL2/SDL_vulkan.h> -#include <SDL2/SDL_mixer.h> - -#include <ft2build.h> -#include FT_FREETYPE_H - #include "../blu_cat/int/core.hpp" /** @@ -57,8 +44,6 @@ struct cg_sCore sym_warning; bool quit_game; - - SDL_Window *window; }; extern cg_sCore cg_core; |