use of plugin.encounter.gui.EncounterView in project pcgen by PCGen.
the class EncounterPlugin method start.
/**
* Starts the plugin, registering itself with the {@code TabAddMessage}.
*/
@Override
public void start(PCGenMessageHandler mh) {
messageHandler = mh;
theModel = new EncounterModel();
theView = new EncounterView();
theRaces = new RaceModel();
theList = new InitHolderList();
createView();
messageHandler.handleMessage(new RequestAddTabToGMGenMessage(this, getLocalizedName(), getView()));
initMenus();
}
Aggregations