diff options
Diffstat (limited to 'game')
-rw-r--r-- | game/Manifest.txt | 1 | ||||
-rw-r--r-- | game/README.TXT | 20 | ||||
-rw-r--r-- | game/esieequest/Main.java | 35 |
3 files changed, 0 insertions, 56 deletions
diff --git a/game/Manifest.txt b/game/Manifest.txt deleted file mode 100644 index fcd916a..0000000 --- a/game/Manifest.txt +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | Main-Class: esieequest.Main | ||
diff --git a/game/README.TXT b/game/README.TXT deleted file mode 100644 index bffd48d..0000000 --- a/game/README.TXT +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | |||
2 | PROJECT TITLE: | ||
3 | ESIEEquest | ||
4 | |||
5 | PURPOSE OF PROJECT: | ||
6 | A simple adventure game made as part of unit IGI-1002 (Java) at ESIEE Paris. | ||
7 | |||
8 | VERSION or DATE: | ||
9 | 2014 (E1) | ||
10 | |||
11 | HOW TO START THIS PROJECT: | ||
12 | - | ||
13 | |||
14 | AUTHORS: | ||
15 | Group 3F: | ||
16 | Pacien TRAN-GIRARD | ||
17 | BenoƮt LUBRANO DI SBARAGLIONE | ||
18 | |||
19 | USER INSTRUCTIONS: | ||
20 | - | ||
diff --git a/game/esieequest/Main.java b/game/esieequest/Main.java deleted file mode 100644 index bee1dc9..0000000 --- a/game/esieequest/Main.java +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | package esieequest; | ||
2 | |||
3 | |||
4 | /** | ||
5 | * Write a description of class Main here. | ||
6 | * | ||
7 | * @author (your name) | ||
8 | * @version (a version number or a date) | ||
9 | */ | ||
10 | public class Main | ||
11 | { | ||
12 | // instance variables - replace the example below with your own | ||
13 | private int x; | ||
14 | |||
15 | /** | ||
16 | * Constructor for objects of class Main | ||
17 | */ | ||
18 | public Main() | ||
19 | { | ||
20 | // initialise instance variables | ||
21 | x = 0; | ||
22 | } | ||
23 | |||
24 | /** | ||
25 | * An example of a method - replace this comment with your own | ||
26 | * | ||
27 | * @param y a sample parameter for a method | ||
28 | * @return the sum of x and y | ||
29 | */ | ||
30 | public int sampleMethod(int y) | ||
31 | { | ||
32 | // put your code here | ||
33 | return x + y; | ||
34 | } | ||
35 | } | ||