예제 #1
0
파일: Program.cs 프로젝트: narfman0/ERMotA
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
예제 #2
0
 public RandomQuest(Game1 GameRef)
 {
     TimeCurrentRandomQuestDialog=Environment.TickCount;
     Game1Reference = GameRef;
     SageQuestInitiated = false;
     RandomQuestFlag = 0;
 }
예제 #3
0
파일: Network.cs 프로젝트: narfman0/ERMotA
 public Network(Game1 GameReference)
 {
     game1 = GameReference;
     TimeLastPosUpdate = Environment.TickCount;
     packetWriter = new PacketWriter();
     packetReader = new PacketReader();
     TimeSinceLastJoinGame = Environment.TickCount;
 }