stendhal/tests/utilities/RPClass/OfferTestHelper.java

28 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. *
* *
***************************************************************************/
2009-04-01 15:11:32 +00:00
package utilities.RPClass;
2009-10-17 11:20:26 +00:00
import games.stendhal.server.entity.trade.Offer;
2009-04-01 15:11:32 +00:00
import marauroa.common.game.RPClass;
public class OfferTestHelper {
public static void generateRPClasses() {
EntityTestHelper.generateRPClasses();
2009-05-03 14:09:57 +00:00
if (!RPClass.hasRPClass("offer")) {
2009-04-01 15:11:32 +00:00
Offer.generateRPClass();
}
}
}