root/src/BRAINSFramework/Label.cs

User picture

Author: conkerjo

Revision: 30 («Previous)


File Size: 472 Bytes

(July 01, 2009 23:02 UTC) Almost 3 years ago


  

 
Show/hide line numbers
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;
        }
    }
}