Connect-Four/src/inf101/v18/sem2/AppInfo.java
Anya Helene Bagge 21978cc4a5 initial
2018-04-16 01:38:30 +02:00

36 lines
910 B
Java

package inf101.v18.sem2;
import java.util.Arrays;
import java.util.List;
public class AppInfo {
/**
* Your application name.
*/
public static final String APP_NAME = "Connect4";
/**
* The main class, for starting the application
*/
public static final Class<?> APP_MAIN_CLASS = null; // e.g., inf101.v18.sem2.Main.class
/**
* Your name.
*/
public static final String APP_DEVELOPER = "INF101-Student";
/**
* A short description.
*/
public static final String APP_DESCRIPTION = "Semesteroppgave2";
/**
* 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 = "Help:\n";
}