mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
16 lines
No EOL
361 B
C#
16 lines
No EOL
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);
|
|
}
|
|
}
|
|
} |