FModel/FModel/Methods/PakReader/ExportObject/UScript/UScriptStruct/FVector2D.cs
2019-10-31 17:43:03 +01:00

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();
}
}
}