mirror of
https://github.com/github/codeql.git
synced 2026-05-09 23:51:59 +02:00
19 lines
230 B
C#
19 lines
230 B
C#
class Container
|
|
{
|
|
protected int x;
|
|
protected int y;
|
|
public void move(int x, int y)
|
|
{
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
}
|
|
class Toolbox : Container
|
|
{
|
|
// ...
|
|
}
|
|
class Window : Container
|
|
{
|
|
// ...
|
|
}
|