Isotx > About CrosuS - Game Support Plugin Tutorial
Game Support Tutorial
This tutorial assumes that you have downloaded the Game Support SDK and that you have all the tools required. If this is not the case, visit the
CrosuS Game Support SDK page so that you can get the required files.
Setup
1. Extract the Game Support SDK files to somewhere such as C:\CrosuSGameSupportSDK\
2. Open the CrosuSGameSupportSDK.sln solution file in Microsoft Visual Studio
3. Select Build->Build Solution from the menu (it should build with no errors)
Adding a new game
The SDK comes with an example implementation of Quake2 support. We'll walk through how we generated this class so that you'll know what to add. First, we need to add a new class and derive from CrosuSGameInterface.Game. This can be done with
public class Quake2Quake : Game
Implementing the game class
Now we'll need to fill in some functions to make this work in CrosuS.
2 3 4 ... 6 