remove /include/twn_config.h, move defauls to relevant headers

This commit is contained in:
2024-10-11 20:21:02 +03:00
parent cfc9ac9583
commit 667b599c19
12 changed files with 19 additions and 31 deletions

View File

@ -1,25 +0,0 @@
#ifndef TWN_CONFIG_H
#define TWN_CONFIG_H
/* TODO: consider if it's still necessary to keep these in one place */
#define PACKAGE_EXTENSION "btw"
#define TICKS_PER_SECOND_DEFAULT 60
#define BASE_RENDER_WIDTH_DEFAULT 640
#define BASE_RENDER_HEIGHT_DEFAULT 360
#define TEXTURE_ATLAS_SIZE_DEFAULT 2048
#define TEXTURE_ATLAS_BIT_DEPTH 32
#define TEXTURE_ATLAS_FORMAT SDL_PIXELFORMAT_RGBA32
#define KEYBIND_SLOTS_DEFAULT 3
#define AUDIO_FREQUENCY 48000
#define TEXT_FONT_TEXTURE_SIZE_DEFAULT 2048
#define TEXT_FONT_OVERSAMPLING_DEFAULT 4
#define TEXT_FONT_FILTERING_DEFAULT TEXTURE_FILTER_LINEAR
#endif

View File

@ -1,7 +1,6 @@
#ifndef TWN_INPUT_H
#define TWN_INPUT_H
#include "twn_config.h"
#include "twn_types.h"
#include "twn_engine_api.h"
#include "twn_control.h"