Archived
forked from RDTKEditor/RDTKEditor
18 lines
290 B
C#
18 lines
290 B
C#
using System;
|
|
namespace RhythmBase.Adofai.Events
|
|
{
|
|
public class ADSetText : ADBaseTaggedTileAction
|
|
{
|
|
public ADSetText()
|
|
{
|
|
Type = ADEventType.SetText;
|
|
}
|
|
|
|
public override ADEventType Type { get; }
|
|
|
|
public string DecText { get; set; }
|
|
|
|
public string Tag { get; set; }
|
|
}
|
|
}
|