mstats-spigot/README.md
2024-12-07 18:08:10 +01:00

29 lines
No EOL
535 B
Markdown

### Instructions
In `pom.xml`:
```xml
<dependency>
<groupId>eu.m724</groupId>
<artifactId>mstats-spigot</artifactId>
<version>0.1.0</version>
</dependency>
```
In `plugin.yml`:
```yaml
libraries:
- eu.m724:mstats-spigot:0.1.0
```
In main class:
```java
import eu.m724.mstats.MStatsPlugin;
public class MyPlugin extends MStatsPlugin {
@Override
public void onEnable() {
// It's recommended that this is the last line of onEnable
mStats(1); // Replace 1 of course with your plugin ID
}
}
```