-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRessources.java
More file actions
25 lines (23 loc) · 1.09 KB
/
Ressources.java
File metadata and controls
25 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package botpackage;
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
public class Ressources {
public Ressources() {
this.bois = 0;
this.argile = 0;
this.fer = 0;
this.cereales = 0;
}
public int bois;
public int argile;
public int fer;
public int cereales;
}
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////