Skip to content
Snippets Groups Projects
Commit c743c8b1 authored by Maxime Wallart's avatar Maxime Wallart :speech_balloon:
Browse files

merge master

parent 492ea0be
No related branches found
No related tags found
No related merge requests found
package main;
public enum Event {
FORT;
}
package main;
public class Region {
private Case[][] region = new Case[5][5];
private Joueur proprietaire;
public Region() {
for(Case[] c : region) {
for(Case d : c) {
d = new Case(Type.GRASS);
}
}
region[(int)Math.random()*6][(int)Math.random()*6].setEvent(Event.FORT);
}
}
package main;
public enum Type {
GRASS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment