/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package garten.model; /** * * @author Jan */ public interface Position { int flaeche = 0; public int positionx = 0; public int positiony = 0; public void setflaeche(int flaeche); public void setPositionx(int x); public void setPositiony(int y); public int getflaeche(); public int getPositionx(); public int getPositiony(); }