Files
biomed/screen.h
2026-02-12 10:51:02 +01:00

13 lines
224 B
C++

#pragma once
#include <SDL2/SDL.h>
extern float SCREEN_WIDTH;
extern float SCREEN_HEIGHT;
namespace Screen
{
extern SDL_Window* gWindow;
void Beep(unsigned char r = 255, unsigned char g = 255, unsigned char b = 255);
}