root/src/BRAINSFramework/Label.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Brains.Framework
{
internal struct Label
{
public float Value;
public float Value2;
public Label(float value)
{
Value = value;
Value2 = value;
}
public Label(float value, float value2)
{
Value = value;
Value2 = value2;
}
}
} |