Changed terminate into unload

This commit is contained in:
2026-01-30 20:42:33 -05:00
parent 82fa3a02c2
commit 6370a70e77
6 changed files with 10 additions and 11 deletions

View File

@@ -6,9 +6,9 @@ namespace Awperative;
public sealed partial class Scene
{
public void Terminate() {
foreach (Behavior behavior in behaviors) behavior.Terminate();
foreach (Body body in bodies) body.Terminate();
public void Unload() {
foreach (Behavior behavior in behaviors) behavior.Unload();
foreach (Body body in bodies) body.Unload();
}
public void Load() {