Exemplo n.º 1
0
 public Sprite(SpriteImage image, Point position, int fps, bool animated) : this(image, position)
 {
     image.FPS        = fps;
     image.IsAnimated = animated;
 }
Exemplo n.º 2
0
 public Sprite(SpriteImage image, Point position) : this(image)
 {
     Position = position;
 }