Added simple start for server-side components.
This commit is contained in:
parent
5b5b217be2
commit
38c8254707
5 changed files with 71 additions and 0 deletions
10
src/main/java/org/dynmap/Component.java
Normal file
10
src/main/java/org/dynmap/Component.java
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package org.dynmap;
|
||||
|
||||
public abstract class Component {
|
||||
protected DynmapPlugin plugin;
|
||||
protected ConfigurationNode configuration;
|
||||
public Component(DynmapPlugin plugin, ConfigurationNode configuration) {
|
||||
this.plugin = plugin;
|
||||
this.configuration = configuration;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue