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