Archived
forked from RDTKEditor/RDTKEditor
17 lines
299 B
C#
17 lines
299 B
C#
using System;
|
|
using RhythmBase.Components;
|
|
namespace RhythmBase.Adofai.Events
|
|
{
|
|
public class ADScreenScroll : ADBaseTaggedTileAction
|
|
{
|
|
public ADScreenScroll()
|
|
{
|
|
Type = ADEventType.ScreenScroll;
|
|
}
|
|
|
|
public override ADEventType Type { get; }
|
|
|
|
public RDSizeN Scroll { get; set; }
|
|
}
|
|
}
|