-
Notifications
You must be signed in to change notification settings - Fork 6
Hello MINX
Liam Middlebrook edited this page Jul 19, 2014
·
3 revisions
Introductory Tutorial to Using MINX
-
Launch Visual Studio
-
Install NuGet Package Manager
-
Download the source for the release of MINX that you wish to use Source Listing
-
Check that the proper dependencies are installed
./configure.sh
-
Compile and Install MINX
make
sudo make install
sudo make headers
Everything in MINX is centered around the MINX::Game class When your program is launched these MINX::Game functions will be called in the following order.
-
MINX::Game::Game();
-
MINX::Game::Initialize();
-
MINX::Game::LoadContent();
-
MINX::Game::Update();
-
MINX::Game::Draw(); // Go back to #4 unless the game is told to exit
-
MINX::Game::UnloadContent();
The following instructions will be created at a later time
- Download the latest version of MINX Project Builder.
- Run MINXProjectBuilder and create a project at your desired location.
- Open the Visual Studio Solution that was generated, and start working on your first MINX game!