SonicAudioTools/Source/CsbBuilder/BuilderNodes/BuilderAisacPointNode.cs
2017-06-21 01:19:47 +03:00

21 lines
601 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace CsbBuilder.BuilderNodes
{
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; }
}
}