An open API service indexing awesome lists of open source software.

https://github.com/makosai/nyxy

Nyxy is an open-source game engine made with C++. The primary focus is a 3D isometric environment with a simplified interpreter.
https://github.com/makosai/nyxy

3d-engine 3d-game-engine cpp cpp-game cpp-game-engine game game-development game-engine isometric-game open-source simple sims simulation simulation-game

Last synced: 3 months ago
JSON representation

Nyxy is an open-source game engine made with C++. The primary focus is a 3D isometric environment with a simplified interpreter.

Awesome Lists containing this project

README

          

# Nyxy
Nyxy is an open-source game engine made with C++. The primary focus is a 3D isometric environment with a simplified interpreter.

## Usage

The code below is enough to get the game started!
```cpp
#include

#include

class Simul : public Nyxy::Application {
public:
Simul() {}

~Simul() {}
};

Nyxy::Application* Nyxy::CreateApplication() {
printf("Welcome to Simul!");
return new Simul();
}
```