mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
15 lines
324 B
C#
15 lines
324 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class SceneDesc : IUnpackable
|
|
{
|
|
public List<SceneType> SceneTypes { get; } = new List<SceneType>();
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
SceneTypes.Unpack(reader);
|
|
}
|
|
}
|
|
}
|