Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chasmical committed Jul 16, 2020
1 parent d2eb3b2 commit 99e4f45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified .vs/RogueLibs/v16/.suo
Binary file not shown.
6 changes: 3 additions & 3 deletions md/CustomMutators.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ myMutator.Description = new CustomName(...);
## Events ##
There are three events that you can listen to:
```cs
public event OnChangeState OnEnabled; // delegate void OnChangeState();
public event OnChangeState OnDisabled; // delegate void OnChangeState();
public event OnState OnChangedState; // delegate void OnState(bool newState);
public event Action OnEnabled;
public event Action OnDisabled;
public event Action<bool> OnChangedState;
```
```cs
myMutator.OnEnabled += MyListener;
Expand Down

0 comments on commit 99e4f45

Please sign in to comment.