Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 425 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 425 Bytes

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!

#include <Nyxy.h>

#include <stdio.h>

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

	~Simul() {}
};

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