ace/Source/ACE.DatLoader/Entity/InputMapConflictsValue.cs
OptimShi 9864887263
DatReader - ActionMap (#4217)
* Added ActionMap Dat reading 0x26000000

* Removed debug code from startup
2024-08-20 19:26:08 -04:00

17 lines
455 B
C#

using System.Collections.Generic;
using System.IO;
namespace ACE.DatLoader.Entity
{
public class InputMapConflictsValue : IUnpackable
{
public uint InputMap { get; private set; }
public List<uint> ConflictingInputMaps { get; private set; } = new List<uint>();
public void Unpack(BinaryReader reader)
{
InputMap = reader.ReadUInt32();
ConflictingInputMaps.Unpack(reader);
}
}
}