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.
- Host: GitHub
- URL: https://github.com/makosai/nyxy
- Owner: Makosai
- License: mit
- Created: 2024-02-06T04:20:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-10T01:15:07.000Z (over 1 year ago)
- Last Synced: 2025-02-24T09:39:58.075Z (8 months ago)
- Topics: 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
- Language: C++
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
}
```