DotRecastNetSim/src/DotRecast.Core/Vector2f.cs

10 lines
130 B
C#
Raw Normal View History

2023-03-28 19:52:26 +03:00
using System;
namespace DotRecast.Core
{
public struct Vector2f
{
public float x;
public float y;
}
}