Skip to content

Commit 1d0d1f9

Browse files
committed
Merge branch 'beta2'
2 parents 8bc8ed4 + f528e68 commit 1d0d1f9

File tree

17 files changed

+754
-276
lines changed

17 files changed

+754
-276
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,30 @@ zips/
1717
Icon?
1818
ehthumbs.db
1919
Thumbs.db
20+
21+
*.pydevproject
22+
.project
23+
.metadata
24+
bin/**
25+
tmp/**
26+
tmp/**/*
27+
*.tmp
28+
*.bak
29+
*.swp
30+
*~.nib
31+
local.properties
32+
.classpath
33+
.settings/
34+
.loadpath
35+
36+
# External tool builders
37+
.externalToolBuilders/
38+
39+
# Locally stored "Eclipse launch configurations"
40+
*.launch
41+
42+
# CDT-specific
43+
.cproject
44+
45+
# PDT-specific
46+
.buildpath

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
wargame
22
=======
33

4-
A kinda-sorta benchmarking program in Java.
4+
A kinda-sorta benchmarking program in Java.

bin/wargame/sunny

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
It's always sunny above the clouds...

compile.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
javac -d "bin" -cp "source/wargame/" source/wargame/*.java
2+
pause

compile.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
javac -d "bin" -cp "source/wargame/" source/wargame/*.java

run.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
java -cp "bin" wargame/App
2+
pause

run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
java -cp "bin" wargame/App

source/App.java

Lines changed: 0 additions & 232 deletions
This file was deleted.

0 commit comments

Comments
 (0)