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.

Position.java 564B

12345678910111213141516171819202122232425
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package garten.model;
  7. /**
  8. *
  9. * @author Jan
  10. */
  11. public interface Position
  12. {
  13. int flaeche = 0;
  14. public int positionx = 0;
  15. public int positiony = 0;
  16. public void setflaeche(int flaeche);
  17. public void setPositionx(int x);
  18. public void setPositiony(int y);
  19. public int getflaeche();
  20. public int getPositionx();
  21. public int getPositiony();
  22. }