stendhal/tests/utilities/RPClass/CatTestHelper.java

27 lines
1.1 KiB
Java
Raw Permalink Normal View History

2010-09-19 01:29:21 +00:00
/* $Id$ */
/***************************************************************************
* (C) Copyright 2003-2010 - Stendhal *
***************************************************************************
***************************************************************************
* *
* 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 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
package utilities.RPClass;
import games.stendhal.server.entity.creature.Cat;
import marauroa.common.game.RPClass;
public class CatTestHelper {
public static void generateRPClasses() {
PetTestHelper.generateRPClasses();
2008-02-13 21:23:51 +00:00
if (!RPClass.hasRPClass("cat")) {
Cat.generateRPClass();
}
}
}