mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
14 lines
317 B
C#
14 lines
317 B
C#
namespace Giants.EffectCompiler
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public class SerializedEffectData
|
|
{
|
|
public byte[] Data { get; set; }
|
|
|
|
public int TableOfContentsSize { get; set; }
|
|
|
|
public IList<ContentEntry> TableOfContents { get; set; } = new List<ContentEntry>();
|
|
}
|
|
}
|