Example #1
0
 public ObjectAttributeMemory()
 {
     for (int i = 0; i < 64; ++i)
     {
         entries[i] = new ObjectAttributeEntry();
     }
 }
Example #2
0
 public ObjectAttributeEntry(ObjectAttributeEntry other)
 {
     Attributes = other.Attributes.Clone() as Attributes;
     X          = other.X;
     Y          = other.Y;
     Id         = other.Id;
 }