Removed Initialize()
This commit is contained in:
@@ -6,7 +6,6 @@ namespace Awperative;
|
||||
|
||||
public sealed partial class Body
|
||||
{
|
||||
public void Initialize() { foreach (Component component in components) component.Initialize(); }
|
||||
public void Terminate() { foreach (Component component in components) component.Terminate(); }
|
||||
|
||||
public void Load() { foreach (Component component in components) { component.Load(); } }
|
||||
|
||||
@@ -5,10 +5,6 @@ namespace Awperative;
|
||||
|
||||
public sealed partial class Scene
|
||||
{
|
||||
public void Initialize() {
|
||||
foreach (Behavior behavior in behaviors) behavior.Initialize();
|
||||
foreach (Body body in bodies) body.Initialize();
|
||||
}
|
||||
|
||||
public void Terminate() {
|
||||
foreach (Behavior behavior in behaviors) behavior.Terminate();
|
||||
|
||||
Reference in New Issue
Block a user