zopiac

Game outline

Oct 4th, 2010
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class basicInt {
  3.     public static void main(String args[]) {
  4.         Scanner input = new Scanner(System.in);
  5.         int selection;
  6. //      System.out.print("Input: ");
  7.         int health = 100;
  8.         int mana = 100;
  9.         int stamina = 100;
  10.         int STR = 10;
  11.         int CON = 10;
  12.         int INT = 10;
  13.         int WIS = 10;
  14.         int DEX = 10;
  15.         int CHA = 10;
  16.     }
  17. }
Add Comment
Please, Sign In to add comment