VIA 9b181689d2 change the game version to 4.0
this needs to happen because we changed how certain RPC functions operate which will probably crash games now if two versions collide
2025-10-26 19:27:33 -07:00

17 lines
458 B
C#

using System;
using UnityEngine;
[Serializable]
public class GameData : MonoBehaviour
{
public static float gameVersion = 4.0f;
public static float serverVersion = 0.2f;
public static string gameName = "marsxplr";
public static string userName = "";
public static string userCode = "";
public static string errorMessage = "";
public static string masterBlacklist = "";
public static GameWorldDesc[] gameWorlds;
public static int networkMode = 0;
}