public Sprite(int id, Enumeration.SpriteType type, int x, int y)
 {
     Id     = id;
     Type   = type;
     Name   = type.ToString();
     X      = x;
     Y      = y;
     Bounds = new Rectangle(x, y, 64, 74);
     Flip   = false;
 }
 public Sprite(int id, Enumeration.SpriteType type, int x, int y)
 {
     Id = id;
        Type = type;
        Name = type.ToString();
        X = x;
        Y = y;
        Bounds = new Rectangle(x, y, 64, 74);
        Flip = false;
 }