chainreaction/settings.hpp

17 lines
220 B
C++

#ifndef SETTINGS_HPP
#define SETTINGS_HPP
#include <SDL2/SDL_events.h>
#include <basic_widgets/core/type/size.hpp>
namespace game
{
struct Settings
{
bwidgets::Size board_size {4, 3};
};
}
#endif