Skip to content

Commit

Permalink
Updated program template to reflect version 3.0 changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damien Wildeve committed Sep 14, 2016
1 parent e6f80e3 commit 1d16a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdf/ProgramTemplate.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
*/


import hsa2.Console; // this imports the code from the hsa2 new package
import hsa2.GraphicsConsole; // this imports the code from the hsa2 new package
import java.awt.Color; // this imports code for using colors and fonts
import java.awt.Font;

public class ProgramTemplate
{
static Console c = new Console(); // You can change this line to make the console bigger or smaller
static GraphicsConsole c = new GraphicsConsole(); // You can change this line to make the console bigger or smaller
//using ... new Console(800, 600); or ... new Console(800, 600, "Pong Game");

public static void main(String[] args)
Expand Down

0 comments on commit 1d16a12

Please sign in to comment.