13 lines
217 B
C#
13 lines
217 B
C#
|
namespace QFSW.QC.Actions
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Waits until the next frame.
|
|||
|
/// </summary>
|
|||
|
public class WaitFrame : WaitRealtime
|
|||
|
{
|
|||
|
public WaitFrame() : base(0)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|