Пример #1
0
        public Background(int x, int y, AndroidImage image, Robot r)
        {
            this._x = x;
            this._y = y;
            _speedX = 0;

            this._bgImage = image;
        }
Пример #2
0
 public void PaintWithImage(IGraphics g, AndroidImage image)
 {
     g.DrawImage(image, boundary.Left, boundary.Top, 0, 0, image.Width, image.Height);
 }