Files
beyond/Assets/Plugins/Pixel Crushers/Quest Machine/Scripts/Utility/IQuestTimer.cs
2024-11-20 15:21:28 +01:00

20 lines
372 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.QuestMachine
{
/// <summary>
/// Interface for classes that handle timer ticks.
/// </summary>
public interface IQuestTimer
{
/// <summary>
/// Invoked when one second has passed.
/// </summary>
void Tick();
}
}