Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoco007 committed Nov 3, 2024
1 parent e0bf7fe commit 4375c5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/CustomAvatar-Editor/Scripts/EventManager.Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public partial class EventManager
[SerializeField]
private IntUnityEvent _multiplierDecreased;

public IntUnityEvent comboIncreased { get; private set; }
public IntUnityEvent comboIncreased => _comboIncreased;

public IntUnityEvent multiplierIncreased { get; private set; }
public IntUnityEvent multiplierIncreased => _multiplierIncreased;

public IntUnityEvent multiplierDecreased { get; private set; }
public IntUnityEvent multiplierDecreased => _multiplierDecreased;
}
}

0 comments on commit 4375c5f

Please sign in to comment.