forked from jaildesigner-jailgames/jaildoctors_dilemma
15 lines
182 B
C++
15 lines
182 B
C++
#pragma once
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
namespace DestSurface
|
|
{
|
|
void init(int width, int height);
|
|
|
|
void clear(uint32_t color);
|
|
|
|
uint8_t *getPixels();
|
|
|
|
int getWidth();
|
|
}
|