示例#1
0
 public Shape(Vector Position, Vector Scale, string Tag, Le_Engine.Type type)
 {
     components    = new Components();
     this.Position = Position;
     this.Scale    = Scale;
     this.Tag      = Tag;
     this.type     = type;
     Z             = 0;
     Le_Engine.RegisterShape(this);
 }
示例#2
0
 public void CreateSelf()
 {
     Le_Engine.RegisterShape(this);
 }