Skip to content
/ Nyxy Public

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

License

Notifications You must be signed in to change notification settings

Makosai/Nyxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();
}