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.
23 lines
742 B
23 lines
742 B
using System.Reflection;
|
|
using AM2RModPackerLib.XML;
|
|
|
|
namespace AM2RModPackerLib;
|
|
|
|
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;
|
|
|
|
public string SaveFolderPath;
|
|
} |