Browse Source

fast fast fertig

master
Apollo 4 years ago
parent
commit
b4ee6317db
1 changed files with 33 additions and 0 deletions
  1. 33
    0
      Garten/src/garten/model/Gaertner3.java

+ 33
- 0
Garten/src/garten/model/Gaertner3.java View File

@@ -0,0 +1,33 @@
/*
* 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 class Gaertner3
{
private static int tempx,
tempy,
alter,
startlaenge;
public Gaertner3(int tempx,int tempy,int alter,int startlaenge)
{
this.tempx = tempx;
this.tempy = tempy;
this.alter = alter;
this.startlaenge = startlaenge;

}
public Pflanze pflanzen()
{
return new Pflanze3(tempx, tempy, alter,startlaenge);
}
}

Loading…
Cancel
Save