forked from kOchirasu/Maple2.File
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
857db80
commit 251b75e
Showing
4 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System.Xml.Serialization; | ||
using M2dXmlGenerator; | ||
|
||
namespace Maple2.File.Parser.Xml.Table; | ||
|
||
// ./data/xml/table/masteryugchousing.xml | ||
[XmlRoot("ms2")] | ||
public partial class MasteryUgcHousingRoot { | ||
[XmlElement("masteryUGCHousing")] public MasteryUgcHousingList MasteryUgcHousing; | ||
} | ||
|
||
public partial class MasteryUgcHousingList { | ||
[XmlElement("v")] public List<MasteryUgcHousing> Entries; | ||
} | ||
|
||
public partial class MasteryUgcHousing { | ||
[XmlAttribute] public int grade; | ||
[XmlAttribute] public int value; | ||
[XmlAttribute] public int rewardJobItemID; | ||
[XmlAttribute] public int rewardJobItemRank; | ||
[XmlAttribute] public int rewardJobItemCount; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters