forked from mirror/DotRecast
10 lines
130 B
C#
10 lines
130 B
C#
|
using System;
|
||
|
|
||
|
namespace DotRecast.Core
|
||
|
{
|
||
|
public struct Vector2f
|
||
|
{
|
||
|
public float x;
|
||
|
public float y;
|
||
|
}
|
||
|
}
|