Skip to content

Latest commit

 

History

History
70 lines (63 loc) · 2.42 KB

README.old.md

File metadata and controls

70 lines (63 loc) · 2.42 KB

Recursion Game Engine

ICON
C++    OpenGL    Vulkan    Linux    Mac    Windows

To run 🚀

$ git clone https://github.com/Osmanyasal/Recursion-Engine.git
$ cd ./Recursion-Engine
$ make run

Project Structure

[name]/
├── [name]/
│   ├── headers...
│   ├── sources...
│   ├── modules...
│   └── unit tests...
└── tests/
    ├── functional_test1/
    ├── functional_test2/
    ├── integration_test1/
    ├── integration_test2/
    └── ...

     
src/ (source for the application)
lib/ (source for the application library *.cpp *.hpp)
doc/ (doxygen or any kind of documentation)

src/utils/
     |──foo
     |──foo.cc
     |──foo.test.cc
     └── ...
src/core/
     |──bar
     |──bar.cc
     |──bar.test.cc
     └── ...
src/tests/
    |──functional_test1
    |──functional_test2
    └── ...