Skip to content

Commit

Permalink
ModuleScript: Moved method
Browse files Browse the repository at this point in the history
  • Loading branch information
Emik03 committed May 22, 2021
1 parent fed2c81 commit 02464f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Source/MonoBehaviours/ModuleScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,6 @@ public void Strike(params string[] logs)
/// </summary>
public virtual void OnActivate() { }

/// <summary>
/// Called when the timer's seconds-digit changes.
/// </summary>
public virtual void OnTimerTick() { }

/// <summary>
/// Called when any module on the current bomb has issued a strike.
/// </summary>
Expand All @@ -268,6 +263,11 @@ public virtual void OnNeedySolved(string moduleId) { }
/// <param name="moduleId">The sender's module id, which was solved.</param>
public virtual void OnSolvableSolved(string moduleId) { }

/// <summary>
/// Called when the timer's seconds-digit changes.
/// </summary>
public virtual void OnTimerTick() { }

/// <summary>
/// Sends information to a static variable such that other modules can access it.
/// </summary>
Expand Down

0 comments on commit 02464f1

Please sign in to comment.