示例#1
0
 public MainForm()
 {
     InitializeComponent();
     this.TopMost          = true;
     this.gamebooster      = new GameBooster();
     this.gamebooster.Log += AddLog;
 }
示例#2
0
        static void Main(string[] args)
        {
            WindowHelper.SetTopMost();
            Console.WindowWidth  = 30;
            Console.WindowHeight = 5;

            Console.ReadLine();

            GameBooster gameBooster = new GameBooster();

            gameBooster.Log += Console.WriteLine;
            gameBooster.Start(false);

            Console.ReadLine();
        }