Implements an initial version of Baton Pass.

Will probably need some additional work in the future.
This commit is contained in:
2025-01-10 13:07:27 +01:00
parent 92ab67ddf8
commit 0ad692a921
4 changed files with 63 additions and 1 deletions

View File

@@ -65,4 +65,9 @@ public class ScriptContainer : IEnumerable<ScriptContainer>, IDeepCloneable
}
Script = null;
}
public void ClearWithoutRemoving()
{
Script = null;
}
}