/**
 * <p>
 * Copyright © 2009-2010, Bruce-Robert Pocock
 * </p>
 * <p>
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 * </p>
 * <p>
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 * </p>
 * <p>
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 * </p>
 * 
 * @author brpocock
 */

package org.starhope.vergil.logic;

/**
 * @author brpocock
 * 
 */
public interface GameImplementor {

	/**
	 * @return
	 */
	String getGameCopyright ();

	/**
	 * @return
	 */
	String getGameSubtitle ();

	/**
	 * @return
	 */
	String getGameTitle ();

	/**
	 * @return
	 */
	boolean isDebug ();

	/**
	 * Log an event using a machine-readable event code and an
	 * event-specific details sequence
	 * 
	 * @param eventCode The machine-readable event code
	 * @param details Additional details
	 */
	void logEvent (String eventCode, String details);

	/**
	 * Report a bug using a String and/or a Throwable
	 * 
	 * @param string WRITEME
	 */
	void reportBug (String string);

	/**
	 * @param string
	 * @param t
	 */
	void reportBug (String string, Throwable t);

	/**
	 * @param t
	 */
	void reportBug (Throwable t);

}
