Collection of tools for debugging and making game development faster.
qASIC is a collection of C# libraries for aiding game development. These tools take care of essential systems and debugging. The overall goal is for it to be easy to learn and use for beginners, while providing advanced and highly customizable features for those that require them.
It takes just a couple lines of code to get qASIC up and running in your project.
var qasicInstance = new qInstance();
qasicInstance.Start();
Now you can add whatever system you want.
//The cheat console
var console = new qConsole()
{
Instance = qasicInstance
};
console.Log("Hello world!");
console.Execute("help");
//The options system
[qOption]
public int frameCap = 60;
var options = new OptionsManager()
{
Instance = qasicInstance
};
options.Initialize();
options.ChangeOption("frameCap", 30);