SonicAudioTools/Source/CsbBuilder/BuilderNodes/BuilderAisacPointNode.cs

21 lines
601 B
C#
Raw Normal View History

2017-01-26 23:40:46 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace CsbBuilder.BuilderNodes
2017-01-26 23:40:46 +03:00
{
public class BuilderAisacPointNode : BuilderBaseNode
{
[Category("Vector"), DisplayName("X")]
[Description("The X dimension of this Point, relative to the Graph it's in.")]
public ushort X { get; set; }
[Category("Vector"), DisplayName("Y")]
[Description("The Y dimension of this Point, relative to the Graph it's in.")]
public ushort Y { get; set; }
}
}