Advertisement
PsyOps

BattleCoreConsole.cs

Jun 14th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using BattleCore;
  6.  
  7. namespace BattleCoreConsole
  8. {
  9.     class Program
  10.     {
  11.         public static void Main()
  12.         {
  13.             BattleCore.BattleCore m_core = new BattleCore.BattleCore();
  14.             m_core.OnStart(null);
  15.             Console.ReadLine();
  16.             m_core.OnStop ();
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement