From 908752fffbcd670475560a30bac8262477f3e363 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Thu, 4 Apr 2013 04:32:42 -0400 Subject: [PATCH] TODO for SDL2.cs, add note about what will go into SDL2# --- README | 4 ++++ src/SDL2.cs | 12 ++++++++++++ 2 files changed, 16 insertions(+) diff --git a/README b/README index 5d61eb5..b69ea79 100644 --- a/README +++ b/README @@ -22,6 +22,10 @@ The wrapper will include bindings for the following libraries: - SDL2_net - SDL2_ttf +Note that SDL2# will not provide every single SDL2 function. This is due to +limitations in the C# language that would cause major conflicts with the native +SDL2 library and its extensions. + Roadmap ------- - Implement the SDL2 libraries. diff --git a/src/SDL2.cs b/src/SDL2.cs index 5935ed3..44c99b3 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -1287,5 +1287,17 @@ namespace SDL2 ); #endregion + + /* TODO: Input Events: + * http://wiki.libsdl.org/moin.fcg/APIByCategory#Input_Events + */ + + /* TODO: Force Feedback: + * http://wiki.libsdl.org/moin.fcg/APIByCategory#Force_Feedback + */ + + /* TODO: Audio: + * http://wiki.libsdl.org/moin.fcg/APIByCategory#Audio + */ } } \ No newline at end of file