OOP2

Added the first file of the 3rd challenge, as I failed the first period. FML, but life is that way. Gonna make this a simple yet powerful framework for MVC programs.

Author
Vngngdn
Date
July 2, 2016, 12:11 a.m.
Hash
eae4a9bb2239f9ac5c566486c08f647ce6275f21
Parent
eb353f11d8aaeed9d2af53bb61f2c9468dabf634
Modified file
Challenge 3/Main.java

Challenge 3/Main.java

17 additions and 0 deletions.

View changes Hide changes
+
1
 * Main class for the program.
+
2
 *
+
3
 * In this class, all parts of the program are being brought together, and their
+
4
 * functionality is 'activated', if you will.
+
5
 * @author Maarten Vangeneugden
+
6
 */
+
7
public class Main {
+
8
	/**
+
9
	 * Main function.
+
10
	 * 
+
11
	 * This is the first function that is being called in the program.
+
12
	 */
+
13
	public static void main(String[] args) {
+
14
		
+
15
	}
+
16
}
+
17