mirror of
https://github.com/4sval/FModel.git
synced 2026-04-05 08:36:10 -05:00
17 lines
276 B
C#
17 lines
276 B
C#
using System.IO;
|
|
|
|
namespace PakReader
|
|
{
|
|
public struct FVector2D
|
|
{
|
|
public float x;
|
|
public float y;
|
|
|
|
internal FVector2D(BinaryReader reader)
|
|
{
|
|
x = reader.ReadSingle();
|
|
y = reader.ReadSingle();
|
|
}
|
|
}
|
|
}
|