17 lines
281 B
C#
17 lines
281 B
C#
using System;
|
|
|
|
namespace DanielLochner.Assets
|
|
{
|
|
[Serializable]
|
|
public struct MinMax
|
|
{
|
|
public float min;
|
|
public float max;
|
|
|
|
public MinMax(float min, float max)
|
|
{
|
|
this.min = min;
|
|
this.max = max;
|
|
}
|
|
}
|
|
} |