refactor: made factories static
This commit is contained in:
@@ -86,7 +86,7 @@ public abstract class BaseEntity : IEntity
|
||||
if (IsInitialized)
|
||||
return false;
|
||||
|
||||
_stateEnable ??= new Factory.StateEnableFactory().Instantiate(this);
|
||||
_stateEnable ??= Factory.StateEnableFactory.Instantiate(this);
|
||||
|
||||
InitializeInternal();
|
||||
|
||||
|
Reference in New Issue
Block a user