rabidus-test/Assets/Plugins/QFSW/Quantum Console/Source/Scripts/Actions/WaitFrame.cs

13 lines
217 B
C#
Raw Normal View History

2023-08-22 15:41:12 +03:00
namespace QFSW.QC.Actions
{
/// <summary>
/// Waits until the next frame.
/// </summary>
public class WaitFrame : WaitRealtime
{
public WaitFrame() : base(0)
{
}
}
}