You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
694 B
21 lines
694 B
using System.Reflection;
|
|
using AtomicLib.XML;
|
|
|
|
namespace AtomicLib;
|
|
|
|
public class ModCreationInfo
|
|
{
|
|
public ModProfileXML Profile = new ModProfileXML();
|
|
|
|
public bool IsAM2R11Loaded => !String.IsNullOrWhiteSpace(AM2R11Path);
|
|
public bool IsWindowsModLoaded=> !String.IsNullOrWhiteSpace(WindowsModPath);
|
|
public bool IsApkModLoaded => !String.IsNullOrWhiteSpace(ApkModPath);
|
|
public bool IsLinuxModLoaded=> !String.IsNullOrWhiteSpace(LinuxModPath);
|
|
public bool IsMacModLoaded=> !String.IsNullOrWhiteSpace(MacModPath);
|
|
|
|
public string AM2R11Path;
|
|
public string WindowsModPath;
|
|
public string ApkModPath;
|
|
public string LinuxModPath;
|
|
public string MacModPath;
|
|
} |