add AppInfo file; oppdater README
This commit is contained in:
31
src/inf101/v18/rogue101/AppInfo.java
Normal file
31
src/inf101/v18/rogue101/AppInfo.java
Normal 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 = "";
|
||||
}
|
Reference in New Issue
Block a user