lib/sdl2: add README
authorAlexis Laferrière <alexis.laf@xymus.net>
Sat, 29 Nov 2014 22:30:26 +0000 (17:30 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Tue, 2 Dec 2014 15:34:27 +0000 (10:34 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/sdl2/README.md [new file with mode: 0644]

diff --git a/lib/sdl2/README.md b/lib/sdl2/README.md
new file mode 100644 (file)
index 0000000..53bf506
--- /dev/null
@@ -0,0 +1,13 @@
+This is a low-level wrapper of the SDL 2.0 library (as `sdl2`) and SDL_image 2.0 (as `sdl2::image`).
+
+The main entry point of this project, `sdl2`, exposes some features of the base
+library: video, events, syswm, etc. The alternative entry point `sdl2::image` offers
+mainly `SDLSurface::load` to load images from PNG, JPG or TIF files.
+
+You can also import `sdl2::all` to get `sdl2` and all its sister libraries, which is only
+`sdl2::image` at this point.
+
+# Examples
+
+See the `minimal` example within this project at `examples/minimal` for a simple example
+of how to use this project.