mirror of
https://gitlab.com/octospacc/MultiSpaccSDK
synced 2025-06-05 22:09:21 +02:00
First commit
This commit is contained in:
5
SDL12/SDL.c
Normal file
5
SDL12/SDL.c
Normal 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
13
SDL12/SDL.h
Normal 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 );
|
Reference in New Issue
Block a user