DungeonGenerator added

master
Jonathan Hager 6 years ago
parent 5d7af4c9ea
commit a0355e4414

@ -22,18 +22,12 @@ public class Dungeon {
this.player = player; this.player = player;
this.playerRoom = 0; this.playerRoom = 0;
this.playerLevel = 0; this.playerLevel = 0;
createLvl();
} }
public void update(){ public void update(){
// TODO: Implementieren // TODO: Implementieren
} }
private void createLvl(){
// TODO. Implementieren
}
/** /**
* @return the level * @return the level
*/ */

@ -0,0 +1,22 @@
/*
* 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 com.dungeoncrawler.model;
/**
*
* @author jonathan
*/
public class DungeonGenerator {
public DungeonGenerator(){
}
public Dungeon generateDungeon(int sizeX, int sizeY){
return null;
}
}
Loading…
Cancel
Save