24 lines
492 B
C#
24 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AirFighter
|
|
{
|
|
internal interface IDrawingObject
|
|
{
|
|
public float Step { get; }
|
|
void SetObject(int x, int y, int width, int height);
|
|
|
|
void MoveObject(Direction direction);
|
|
|
|
void DrawingObject(Graphics g);
|
|
|
|
void DoSomething();
|
|
|
|
(float Left, float Top, float Right, float Bottom) GetCurrentPosition();
|
|
|
|
}
|
|
}
|