|
@@ -1,4 +1,5 @@
|
|
|
-[](https://travis-ci.org/vurtun/nuklear)
|
|
|
+[](https://travis-ci.org/vurtun/nuklear)
|
|
|
+
|
|
|
# Nuklear
|
|
|
This is a minimal state immediate mode graphical user interface toolkit
|
|
|
written in ANSI C and licensed under public domain. It was designed as a simple
|
|
@@ -30,10 +31,10 @@ by default when included and allows including this header in other headers
|
|
|
and does not contain the actual implementation.
|
|
|
|
|
|
The implementation mode requires to define the preprocessor macro
|
|
|
-`NK_IMPLEMENTATION` in *one* .c/.cpp file before #includeing this file, e.g.:
|
|
|
+`NK_IMPLEMENTATION` in *one* .c/.cpp file before `#include`ing this file, e.g.:
|
|
|
```c
|
|
|
- #define NK_IMPLEMENTATION
|
|
|
- #include "nuklear.h"
|
|
|
+#define NK_IMPLEMENTATION
|
|
|
+#include "nuklear.h"
|
|
|
```
|
|
|
|
|
|
## Gallery
|
|
@@ -84,12 +85,12 @@ nk_end(ctx);
|
|
|
```
|
|
|

|
|
|
|
|
|
-##CREDITS:
|
|
|
+## CREDITS:
|
|
|
Developed by Micha Mettke and every direct or indirect contributor to the GitHub.
|
|
|
|
|
|
|
|
|
-Embeds stb_texedit, stb_truetype and stb_rectpack by Sean Barret (public domain)
|
|
|
-Embeds ProggyClean.ttf font by Tristan Grimmer (MIT license).
|
|
|
+Embeds `stb_texedit`, `stb_truetype` and `stb_rectpack` by Sean Barret (public domain)
|
|
|
+Embeds `ProggyClean.ttf` font by Tristan Grimmer (MIT license).
|
|
|
|
|
|
|
|
|
Big thank you to Omar Cornut (ocornut@github) for his [imgui](https://github.com/ocornut/imgui) library and
|
|
@@ -98,7 +99,7 @@ and his original immediate mode graphical user interface idea and Sean
|
|
|
Barret for his amazing single header [libraries](https://github.com/nothings/stb) which restored my faith
|
|
|
in libraries and brought me to create some of my own.
|
|
|
|
|
|
-##LICENSE:
|
|
|
+## LICENSE:
|
|
|
This software is dual-licensed to the public domain and under the following
|
|
|
license: you are granted a perpetual, irrevocable license to copy, modify,
|
|
|
publish and distribute this file as you see fit.
|