PIbd-22_Bondarenko_M.S._War.../WarmlyShip/WarmlyShip/IDrawningObject.cs
Макс Бондаренко cb66cd7938 Чупапи муняня
2022-10-18 20:34:50 +04:00

18 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WarmlyShip
{
internal interface IDrawningObject
{
public float Step { get; }
void SetObject(int x, int y, int width, int height);
void MoveObject(Direction direction);
void DrawningObject(Graphics g);
(float Left, float Right, float Top, float Bottom) GetCurrentPosition();
}
}