mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-27 14:30:17 +00:00
16 lines
361 B
C#
16 lines
361 B
C#
|
using System.IO;
|
|||
|
|
|||
|
namespace SanAndreasUnity.Importing.RenderWareStream
|
|||
|
{
|
|||
|
[SectionType(0x253F2FE)]
|
|||
|
public class FrameName : SectionData
|
|||
|
{
|
|||
|
public readonly String Name;
|
|||
|
|
|||
|
public FrameName(SectionHeader header, Stream stream)
|
|||
|
: base(header, stream)
|
|||
|
{
|
|||
|
Name = new String(header, stream);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|