| 12345678910111213141516171819202122232425 |
- using System;
- #pragma warning disable 649 // field is never assigned
- namespace FF8
- {
- public static partial class Jsm
- {
- public static partial class File
- {
- public struct Group
- {
- private readonly UInt16 _value;
- public UInt16 Label => checked((UInt16)(_value >> 7));
- public Byte ScriptsCount => checked((Byte)(_value & 0x7F));
- public override string ToString()
- {
- return $"Label: {Label}, Script: {ScriptsCount}, Value: {_value}";
- }
- }
- }
- }
- }
|