1 /***************************************************************************
2  *                      (C) Copyright 2003 - Arianne                       *
3  ***************************************************************************
4  ***************************************************************************
5  *                                                                         *
6  *   This program is free software; you can redistribute it and/or modify  *
7  *   it under the terms of the GNU General Public License as published by  *
8  *   the Free Software Foundation; either version 2 of the License, or     *
9  *   (at your option) any later version.                                   *
10  *                                                                         *
11  ***************************************************************************/
12 package games.stendhal.common.constants;
13 
14 /**
15  * Generic constants.
16  */
17 public class General {
18 
19 	/* property indicating entity has a path set */
20 	public final static String PATHSET = "pathset";
21 
22 	/* property for dictating how karma should be used in battle */
23 	public final static String COMBAT_KARMA = "combatkarma";
24 }
25