Updated the ClassCanBeTyped

This commit is contained in:
ahmad 2024-05-11 17:07:57 +02:00
parent ecb9abdf6b
commit 6fcf183bc8

View File

@ -12,6 +12,10 @@ public class ClassCanBeTyped {
this.x = x;
this.y = y;
}
public ClassCanBeTyped initClassCanBeTyped(int x, int y) {
b = new ClassCanBeTyped(x, y);
return b;
}
public ClassCanBeTyped init(int x, int y) {
return new ClassCanBeTyped(x, y);
}