aboutsummaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2014-02-08 14:44:29 +0100
committerPacien TRAN-GIRARD2014-02-08 14:44:29 +0100
commitf9280ac8867ae43211a77f51877936f2fe3f3b61 (patch)
tree68c829890ab338801c68c12a1b19b6c9a35f761e /game
parentb6f120fcb6d54f3d2f3e856407c4c96d0770d54f (diff)
downloadesieequest-f9280ac8867ae43211a77f51877936f2fe3f3b61.tar.gz
Restructure project for Eclipse
Diffstat (limited to 'game')
-rw-r--r--game/Manifest.txt1
-rw-r--r--game/README.TXT20
-rw-r--r--game/esieequest/Main.java35
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 @@
1Main-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
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/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}