mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-08 22:15:32 +00:00
TODO for SDL2.cs, add note about what will go into SDL2#
This commit is contained in:
parent
de5f266324
commit
908752fffb
4
README
4
README
|
@ -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.
|
||||||
|
|
12
src/SDL2.cs
12
src/SDL2.cs
|
@ -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
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue