-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# druk | ||
szoplab | ||
# Fordítás | ||
|
||
`cd src` | ||
|
||
`dir` | ||
|
||
*látszik drukmakor mappa* | ||
|
||
`javac drukmakor/*.java` | ||
|
||
Jar fájl készítése: | ||
|
||
`jar cfm druk.jar MANIFEST.MF drukmakor/*.class` | ||
|
||
# Futtatás | ||
|
||
`cd ..` | ||
|
||
`java -jar src/druk.jar` | ||
|
||
A programnak szüksége van képekre, és a palya.txt-re a futáshoz, ezeknek a current working directory-ban elérhetőnek kell lenniük (a fentebbi utasítások pontos végrehajtásának eredményeképp ezen fájlok megfelelő pozíciója biztosított kell legyen). | ||
|
||
Használható parancssori argumentumok: | ||
- `nogui`: csak parancssor | ||
- `stdingui`: gui mellett még a parancssorból (stdin-ről) is fogad parancsokat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Manifest-Version: 1.0 | ||
Main-Class: drukmakor.Grafikus |