19 lines
314 B
C#
19 lines
314 B
C#
|
namespace RND
|
||
|
{
|
||
|
public class NullableVector3
|
||
|
{
|
||
|
public float? X;
|
||
|
public float? Y;
|
||
|
public float? Z;
|
||
|
|
||
|
public NullableVector3() {}
|
||
|
|
||
|
public NullableVector3(float? x, float? y, float? z)
|
||
|
{
|
||
|
X = x;
|
||
|
Y = y;
|
||
|
Z = z;
|
||
|
}
|
||
|
}
|
||
|
}
|