Skip to content

Commit

Permalink
feat(UI/Dialogue): Allow overwrite reset action
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Oct 12, 2024
1 parent e68d260 commit 8772968
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Assets/JCSUnity/Scripts/Interfaces/JCS_DialogueScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ protected virtual void Start()
/// <param name="selection"></param>
public virtual void End(int mode, int type, int selection)
{

// ..
}

/// <summary>
/// Rset status.
/// Reset the action.
/// </summary>
public void ResetAction()
public virtual void ResetAction()
{
Status = -1;
}
Expand Down

0 comments on commit 8772968

Please sign in to comment.