Somewhat working indicators

This commit is contained in:
Michal Pikulski
2025-10-02 07:41:27 +02:00
parent dac119fd7b
commit 9c67f503d2
7 changed files with 172 additions and 80 deletions

View File

@@ -8,6 +8,16 @@ namespace PuzzleS
/// </summary>
public interface IPuzzlePrompt
{
/// <summary>
/// Called when the prompt should be initially shown (e.g., when step is unlocked)
/// </summary>
void OnShow();
/// <summary>
/// Called when the prompt should be hidden (e.g., when step is locked)
/// </summary>
void OnHide();
/// <summary>
/// Called when the player enters the outer range of the prompt.
/// </summary>