Adds a bunch more move scripts
This commit is contained in:
@@ -14,8 +14,15 @@ namespace PkmnLib.Dynamic.ScriptHandling;
|
||||
/// </summary>
|
||||
public abstract class Script
|
||||
{
|
||||
internal event Action<Script>? OnRemoveEvent;
|
||||
|
||||
private int _suppressCount;
|
||||
|
||||
public void RemoveSelf()
|
||||
{
|
||||
OnRemoveEvent?.Invoke(this);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The name of a script is its unique identifier.
|
||||
/// If not overridden, this will resolve the name from the <see cref="ScriptAttribute"/> of the
|
||||
|
||||
Reference in New Issue
Block a user