You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
248 B

  1. public class Figure {
  2. int position;
  3. public Figure() {
  4. this.position = -1;
  5. }
  6. public void setPosition(int position) {
  7. this.position = position;
  8. }
  9. public int getPosition() {
  10. return position;
  11. }
  12. }