Back to project page adventure-quest.
The source code is released under:
Copyright ? 2012 Alan Berndt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwar...
If you think the Android project adventure-quest listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.honeybadgerlabs.adventurequest; /*from w ww . ja v a 2 s . c o m*/ public class Quest { public static final int STATUS_NONE = 0; public static final int STATUS_FAILED = 1; public static final int STATUS_COMPLETE = 2; public static final int STATUS_PROGRESS = 3; public static final int STATUS_ABANDON = 4; public String description = ""; public int status = STATUS_NONE; public Quest(String description, int status) { this.description = description; this.status = status; } }