Added simple start for server-side components.

This commit is contained in:
FrozenCow 2011-05-19 11:06:19 +02:00
parent 5b5b217be2
commit 38c8254707
5 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package org.dynmap;
public class TestComponent extends Component {
public TestComponent(DynmapPlugin plugin, ConfigurationNode configuration) {
super(plugin, configuration);
Log.info("Hello! I'm a component that does stuff! Like saying what is in my configuration: " + configuration.getString("stuff"));
}
}