First commit

This commit is contained in:
2022-08-06 01:07:35 +02:00
commit 8bb663a7be
5 changed files with 40 additions and 0 deletions

5
SDL12/SDL.c Normal file
View File

@ -0,0 +1,5 @@
#include <stddef.h>
void MultiSpacc_SetAppTitle( const char *Title ) {
SDL_WM_SetCaption( Title, NULL );
}

13
SDL12/SDL.h Normal file
View File

@ -0,0 +1,13 @@
#pragma once
#ifndef MultiSpacc_Target_SDL12
#define MultiSpacc_Target_SDL12
#endif
#include "../MultiSpacc.h"
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include "SDL/SDL_mixer.h"
#include "SDL/SDL_ttf.h"
void MultiSpacc_SetAppTitle( const char *Title );