// ---------------------------
//   Standard Module System
//      MIT Licensed
// (Extend and use as you wish)
// ---------------------------


namespace Modular{
	
	/// <summary>
	/// The Main class. Extend this with partial classes to make 
	/// a module start up when the game does in a defined order.
	/// Each should be a method like Start_yourModuleName(StartInfo info);
	/// </summary>
	[Values.Preserve]
	public static partial class Main{
	}
	
}