This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Adofai/Events/ADHallOfMirrors.cs
T

16 lines
271 B
C#

using System;
namespace RhythmBase.Adofai.Events
{
public class ADHallOfMirrors : ADBaseTaggedTileAction
{
public ADHallOfMirrors()
{
Type = ADEventType.HallOfMirrors;
}
public override ADEventType Type { get; }
public bool Enabled { get; set; }
}
}