TODO for SDL2.cs, add note about what will go into SDL2#

This commit is contained in:
Ethan Lee 2013-04-04 04:32:42 -04:00
parent de5f266324
commit 908752fffb
2 changed files with 16 additions and 0 deletions

4
README
View file

@ -22,6 +22,10 @@ The wrapper will include bindings for the following libraries:
- SDL2_net - SDL2_net
- SDL2_ttf - 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 Roadmap
------- -------
- Implement the SDL2 libraries. - Implement the SDL2 libraries.

View file

@ -1287,5 +1287,17 @@ namespace SDL2
); );
#endregion #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
*/
} }
} }