Files
PIbd-22_Bondarenko_M.S._War…/WarmlyShip/WarmlyShip/IDrawningObject.cs
Макс Бондаренко ce21b5e68f 1111
2022-11-11 18:57:16 +04:00

20 lines
442 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();
string GetInfo();
}
}