QSBCore: remove todo

This commit is contained in:
JohnCorby 2022-03-25 19:38:33 -07:00
parent 0c5d230454
commit 3f2f12b144

View File

@ -45,12 +45,9 @@ public class QSBCore : ModBehaviour
public static AssetBundle TextAssetsBundle { get; private set; }
public static bool IsHost => NetworkServer.active;
public static bool IsInMultiplayer => QSBNetworkManager.singleton.isNetworkActive;
public static string QSBVersion =>
// todo: show this in kick message
Helper.Manifest.Version;
public static string QSBVersion => Helper.Manifest.Version;
public static string GameVersion =>
// ignore the last patch numbers like the title screen does
// todo: show this in kick message
Application.version.Split('.').Take(3).Join(delimiter: ".");
public static bool DLCInstalled => EntitlementsManager.IsDlcOwned() == EntitlementsManager.AsyncOwnershipStatus.Owned;
public static IMenuAPI MenuApi { get; private set; }