Beispiel #1
0
 protected abstract void DoProcess(EntityProcess <TEntity> entityProcess);
Beispiel #2
0
 public void Process(EntityProcess <TEntity> entityProcess)
 {
     DoProcess(entityProcess);
 }
Beispiel #3
0
 // Bind event and if needed grab entity maker
 protected abstract void OnInitialize(EntityProcess <TEntity> entityProcess);
Beispiel #4
0
 // Clear event listener, if need
 protected abstract void OnDestroy(EntityProcess <TEntity> entityProcess);
Beispiel #5
0
 protected ProcessorBase(EntityProcess <TEntity> entityProcess)
 {
     _entityProcess = entityProcess;
 }