Final-Bomber  0.1
Bomberman/Dynablaster remake in C# using XNA.
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Pages
GameSettings.cs
Go to the documentation of this file.
1 using System;
2 using FBClient.Core;
3 
4 namespace FBClient.Network
5 {
6  static class GameSettings
7  {
8  static public Int64 currentMap = -1;
9  public static string CurrentMapName = "";
10  static public string CurrentVersion = "";
11 
12  public const string THISVERSION = "5";
13 
14  static public string Username, Password;
15 
16  static public long speed;
17  }
18 }