aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.classpath6
-rw-r--r--.project18
-rwxr-xr-x[-rw-r--r--]bin/Manifest.txt (renamed from game/Manifest.txt)0
-rwxr-xr-x[-rw-r--r--]bin/README.TXT (renamed from game/README.TXT)0
-rw-r--r--game/esieequest/Main.java35
-rwxr-xr-xsrc/Manifest.txt1
-rwxr-xr-xsrc/README.TXT20
-rwxr-xr-xsrc/esieequest/Main.java27
8 files changed, 72 insertions, 35 deletions
diff --git a/.classpath b/.classpath
new file mode 100644
index 0000000..fb565a5
--- /dev/null
+++ b/.classpath
@@ -0,0 +1,6 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<classpath>
3 <classpathentry kind="src" path="src"/>
4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
5 <classpathentry kind="output" path="bin"/>
6</classpath>
diff --git a/.project b/.project
new file mode 100644
index 0000000..7d9a832
--- /dev/null
+++ b/.project
@@ -0,0 +1,18 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<projectDescription>
3 <name>a3p-esieequest</name>
4 <comment></comment>
5 <comment></comment>
6 <projects>
7 </projects>
8 <buildSpec>
9 <buildCommand>
10 <name>org.eclipse.jdt.core.javabuilder</name>
11 <arguments>
12 </arguments>
13 </buildCommand>
14 </buildSpec>
15 <natures>
16 <nature>org.eclipse.jdt.core.javanature</nature>
17 </natures>
18</projectDescription>
diff --git a/game/Manifest.txt b/bin/Manifest.txt
index fcd916a..fcd916a 100644..100755
--- a/game/Manifest.txt
+++ b/bin/Manifest.txt
diff --git a/game/README.TXT b/bin/README.TXT
index bffd48d..bffd48d 100644..100755
--- a/game/README.TXT
+++ b/bin/README.TXT
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 @@
1package 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 */
10public 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}
diff --git a/src/Manifest.txt b/src/Manifest.txt
new file mode 100755
index 0000000..fcd916a
--- /dev/null
+++ b/src/Manifest.txt
@@ -0,0 +1 @@
Main-Class: esieequest.Main
diff --git a/src/README.TXT b/src/README.TXT
new file mode 100755
index 0000000..bffd48d
--- /dev/null
+++ b/src/README.TXT
@@ -0,0 +1,20 @@
1
2PROJECT TITLE:
3 ESIEEquest
4
5PURPOSE OF PROJECT:
6 A simple adventure game made as part of unit IGI-1002 (Java) at ESIEE Paris.
7
8VERSION or DATE:
9 2014 (E1)
10
11HOW TO START THIS PROJECT:
12 -
13
14AUTHORS:
15 Group 3F:
16 Pacien TRAN-GIRARD
17 BenoƮt LUBRANO DI SBARAGLIONE
18
19USER INSTRUCTIONS:
20 -
diff --git a/src/esieequest/Main.java b/src/esieequest/Main.java
new file mode 100755
index 0000000..9d60875
--- /dev/null
+++ b/src/esieequest/Main.java
@@ -0,0 +1,27 @@
1/**
2 *
3 */
4package esieequest;
5
6/**
7 * @author pacien
8 *
9 */
10public class Main {
11
12 /**
13 *
14 */
15 public Main() {
16 // TODO Auto-generated constructor stub
17 }
18
19 /**
20 * @param args
21 */
22 public static void main(String[] args) {
23 // TODO Auto-generated method stub
24 System.out.println("Hello ESIEE!");
25 }
26
27}