mirror of
https://github.com/github/codeql.git
synced 2026-01-18 08:54:56 +01:00
23 lines
307 B
C#
23 lines
307 B
C#
class Toolbox
|
|
{
|
|
private int x;
|
|
private int y;
|
|
public void move(int x, int y)
|
|
{
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
// ...
|
|
}
|
|
class Window
|
|
{
|
|
private int x;
|
|
private int y;
|
|
public void move(int x, int y)
|
|
{
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
// ...
|
|
}
|