13 lines
171 B
C
13 lines
171 B
C
/*
|
|
* DESCRIPTION:
|
|
* surface.c header.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include "../util/UTIL.h"
|
|
|
|
void surface_rgba_init(struct SDL_Surface** self, ivec2 size);
|