14 lines
216 B
C++
14 lines
216 B
C++
#pragma once
|
|
#include "assets.hpp"
|
|
#include "config.hpp"
|
|
#include <SDL.h>
|
|
|
|
struct GlobalState {
|
|
SDL_Window *window;
|
|
SDL_Renderer *renderer;
|
|
PhoenixAssets assets;
|
|
int scale = 20;
|
|
};
|
|
|
|
extern GlobalState state;
|