mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2024-12-02 19:17:27 +01:00
23 lines
641 B
C#
23 lines
641 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
|
|
namespace CsbBuilder.BuilderNode
|
|
{
|
|
public abstract class BuilderBaseNode : ICloneable
|
|
{
|
|
[Category("General"), ReadOnly(true)]
|
|
[Description("The name of this node. Shift JIS encoding is used for this in the Cue Sheet Binary, so try to avoid using special characters that this codec does not support.")]
|
|
public string Name { get; set; }
|
|
|
|
public object Clone()
|
|
{
|
|
return MemberwiseClone();
|
|
}
|
|
}
|
|
}
|