mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-03 14:45:38 +00:00
Update README to address SDL2#'s coding style.
This commit is contained in:
parent
0827bc6c9d
commit
26e5d0662d
8
README
8
README
|
@ -15,7 +15,7 @@ http://wiki.libsdl.org/moin.fcg/FrontPage
|
||||||
About the C# Wrapper
|
About the C# Wrapper
|
||||||
--------------------
|
--------------------
|
||||||
The C# wrapper was written to be used for MonoGame's desktop platforms. However,
|
The C# wrapper was written to be used for MonoGame's desktop platforms. However,
|
||||||
this is written in a way that can be used for any general Mono application.
|
this is written in a way that can be used for any general C# application.
|
||||||
|
|
||||||
The wrapper will include bindings for the following libraries:
|
The wrapper will include bindings for the following libraries:
|
||||||
- SDL2
|
- SDL2
|
||||||
|
@ -27,6 +27,12 @@ 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
|
limitations in the C# language that would cause major conflicts with the native
|
||||||
SDL2 library and its extensions.
|
SDL2 library and its extensions.
|
||||||
|
|
||||||
|
SDL2# is a pure port of the C headers. The naming schemes for this library will
|
||||||
|
be exactly as they are done in the C library, with little-to-no concern for
|
||||||
|
"appropriate" C# style. The namespace indicates that this is SDL2, the class
|
||||||
|
names will indicate which library file the function/type/value exists in, and
|
||||||
|
everything else will be as close to the C version as technically possible.
|
||||||
|
|
||||||
Roadmap
|
Roadmap
|
||||||
-------
|
-------
|
||||||
To see the current roadmap for SDL2#, visit the GitHub issues page:
|
To see the current roadmap for SDL2#, visit the GitHub issues page:
|
||||||
|
|
Loading…
Reference in a new issue