add AppInfo file; oppdater README

This commit is contained in:
Anya Helene Bagge
2018-03-17 16:04:53 +01:00
parent 5011891aff
commit 1971194a63
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,31 @@
package inf101.v18.rogue101;
import java.util.Arrays;
import java.util.List;
public class AppInfo {
/**
* Your application name.
*/
public static final String APP_NAME = "Rogue-101";
/**
* Your name.
*/
public static final String APP_DEVELOPER = "INF101-student";
/**
* A short description.
*/
public static final String APP_DESCRIPTION = "Implementasjon av inf101.v18.sem1";
/**
* List of extra credits (e.g. for media sources)
*/
public static final List<String> APP_EXTRA_CREDITS = Arrays.asList(//
/* "Graphics by Foo Bar" */
);
/**
* Help text. Could be used for an in-game help page, perhaps.
* <p>
* Use <code>\n</code> for new lines, <code>\f<code> between pages (if multi-page).
*/
public static final String APP_HELP = "";
}