namespace ConsoleApplication1
{
interface IBird
{
void fly();
}
class Bird : IBird
{
public int x;
public int y;
public Bird(int x, int y)
{
this.x = x;
this.y = y;
}
public void fly()
{
y += 10;
}
}
}
Comments
Leave a comment