mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
18 lines
455 B
C#
18 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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|