mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
34 lines
808 B
C#
34 lines
808 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Models.Internal
|
|
{
|
|
[JsonObject("chip"), XmlRoot("chip")]
|
|
public class Chip : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>long</remarks>
|
|
public const string ClockKey = "clock";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string FlagsKey = "flags";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string NameKey = "name";
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
public const string SoundOnlyKey = "soundonly";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string TagKey = "tag";
|
|
|
|
/// <remarks>(cpu|audio)</remarks>
|
|
public const string ChipTypeKey = "type";
|
|
|
|
#endregion
|
|
|
|
public Chip() => Type = ItemType.Chip;
|
|
}
|
|
}
|