Example #1
0
 public EntityRequest(Entity target, EntityRequestTypes type)
 {
     this.Target = target;
     this.RequestType = type;
 }
Example #2
0
 public void AddRequest(Entity item, EntityRequestTypes type)
 {
     this.PendingRequests.Add(new EntityRequest(item, type));
 }
Example #3
0
 public void AddRequest(Entity item, EntityRequestTypes type)
 {
     this.PendingRequests.Add(new EntityRequest(item, type));
 }
Example #4
0
 public EntityRequest(Entity target, EntityRequestTypes type)
 {
     this.Target      = target;
     this.RequestType = type;
 }