/vulture_engine

Vulture Game Engine

Primary LanguageC++Apache License 2.0Apache-2.0

Vulture Logo

Vulture Engine

Created by @lazzy07

Vulture game engine version 0.1 alpha

To start the engine,

class Sandbox : public Vulture::Application {
public:
	Sandbox() {

	}

	~Sandbox() {

	}
};

Vulture::Application* Vulture::CreateApplication() {
	return new Sandbox();
}