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.
AM2RModPacker/ModProfile.cs

24 lines
810 B

namespace AM2R_ModPacker
{
internal class ModProfile
{
public int version { get; set; }
public string name { get; set; }
public string author { get; set; }
public bool usesCustomMusic { get; set; }
public string saveLocation { get; set; }
public bool android { get; set; }
public bool usesYYC { get; set; }
public ModProfile(int version, string name, string author, bool usesCustomMusic, string saveLocation, bool android, bool usesYYC)
{
this.version = version;
this.name = name;
this.author = author;
this.usesCustomMusic = usesCustomMusic;
this.saveLocation = saveLocation;
this.android = android;
this.usesYYC = usesYYC;
}
}
}