Start adding inventory support

This commit is contained in:
2022-08-04 22:24:42 +02:00
parent c426420870
commit a02e5a5675
3 changed files with 26 additions and 2 deletions

View File

@ -3,6 +3,8 @@
SDL_Surface * LoadImage ( char * FilePath );
void DrawSurf ( int x, int y, SDL_Surface * Src, SDL_Rect * Clip, SDL_Surface * Dst );
void FillSurfRGB ( int R, int G, int B, SDL_Surface * Dst );
void DrawOutlineRect ( SDL_Surface * Dst );
SDL_Surface * ScreenSet ( int Width, int Height, int Bits, SDL_Surface * Screen );
bool FlipScreen( SDL_Surface * Screen );