mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
17 lines
No EOL
432 B
C#
17 lines
No EOL
432 B
C#
using SanAndreasUnity.Importing.Collision;
|
|
using System.IO;
|
|
|
|
namespace SanAndreasUnity.Importing.RenderWareStream
|
|
{
|
|
[SectionType(0x0253F2FA)]
|
|
public class CollisionModel : SectionData
|
|
{
|
|
public readonly CollisionFile Collision;
|
|
|
|
public CollisionModel(SectionHeader header, Stream stream)
|
|
: base(header, stream)
|
|
{
|
|
Collision = CollisionFile.Load(stream);
|
|
}
|
|
}
|
|
} |