From a9a0e94e916fc3627d212321d9dd880d772b77a0 Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Thu, 6 Feb 2014 23:23:10 +0100 Subject: Add dummy Main class and package --- game/esieequest/Main.java | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 game/esieequest/Main.java (limited to 'game') diff --git a/game/esieequest/Main.java b/game/esieequest/Main.java new file mode 100644 index 0000000..bee1dc9 --- /dev/null +++ b/game/esieequest/Main.java @@ -0,0 +1,35 @@ +package esieequest; + + +/** + * Write a description of class Main here. + * + * @author (your name) + * @version (a version number or a date) + */ +public class Main +{ + // instance variables - replace the example below with your own + private int x; + + /** + * Constructor for objects of class Main + */ + public Main() + { + // initialise instance variables + x = 0; + } + + /** + * An example of a method - replace this comment with your own + * + * @param y a sample parameter for a method + * @return the sum of x and y + */ + public int sampleMethod(int y) + { + // put your code here + return x + y; + } +} -- cgit v1.2.3