Exemplo n.º 1
0
 private bool Create(EntityBase entity)
 {
     bool success = false;
     //Add Create new entity to the Task List//
     //If task Executes Sucessfully return true//
     return success;
 }
Exemplo n.º 2
0
 public SpritePositionData(EntityBase root, bool haspriority)
 {
     rootEntity = root;
     X = root.X;
     Y = root.Y;
     TimeStamp = Stopwatch.GetTimestamp();
     hasPriority = haspriority;
 }