├── .gitignore ├── LICENSE ├── Luna ├── Luna.hpp └── LunaTypes.hpp ├── examples ├── HelloWorld.cpp ├── IncrementVar.cpp ├── IsPowerOf2.cpp └── test.cpp └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/LICENSE -------------------------------------------------------------------------------- /Luna/Luna.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/Luna/Luna.hpp -------------------------------------------------------------------------------- /Luna/LunaTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/Luna/LunaTypes.hpp -------------------------------------------------------------------------------- /examples/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/examples/HelloWorld.cpp -------------------------------------------------------------------------------- /examples/IncrementVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/examples/IncrementVar.cpp -------------------------------------------------------------------------------- /examples/IsPowerOf2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/examples/IsPowerOf2.cpp -------------------------------------------------------------------------------- /examples/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/examples/test.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheremyfoodat/Luna/HEAD/readme.md --------------------------------------------------------------------------------