mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
15 lines
368 B
C++
15 lines
368 B
C++
#include "oneshot.h"
|
|
#include "etc.h"
|
|
#include "sharedstate.h"
|
|
#include "binding-util.h"
|
|
#include "binding-types.h"
|
|
#include "eventthread.h"
|
|
|
|
#include <SDL3/SDL.h>
|
|
#include <SDL3/SDL_version.h>
|
|
//for future use
|
|
|
|
void SunshineBindingInit(){
|
|
VALUE module = rb_define_module("Sunshine");
|
|
rb_const_set(module, rb_intern("SDLVersion"), static_cast<char>(SDL_VERSION));
|
|
}
|