From df0b8c03d6804c7a464eaaf7d78154012ec75c70 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 8 Oct 2014 00:36:27 -0400 Subject: [PATCH] SDL_GetVersion can be public --- src/SDL2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 789158d..f636285 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -865,7 +865,7 @@ namespace SDL2 /// the structure that contains the version information /// This function may be called safely at any time, even before SDL_Init(). [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - private static extern void SDL_GetVersion(out SDL_version ver); + public static extern void SDL_GetVersion(out SDL_version ver); /// /// Use this function to get the code revision of SDL that is linked against your program.