Skip to content

Commit

Permalink
Add missing module files
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Apr 1, 2020
1 parent ba1267f commit de2d951
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/main/java/me/nikl/matchit/MatchitModule.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package me.nikl.matchit;

import me.nikl.gamebox.module.GameBoxModule;

public class MatchitModule extends GameBoxModule {
public final static String MATCHIT = "matchit";

@Override
public void onEnable() {
registerGame(MATCHIT, MatchIt.class, "mi");
}

@Override
public void onDisable() {

}
}
10 changes: 10 additions & 0 deletions src/main/resources/module.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
id: ${project.artifactId}
version: ${project.version}
authors: ["Niklas Eicker"]
name: ${project.name}
description: ${project.description}
sourceUrl: ${project.scm.url}
updatedAt: !!java.lang.Long ${timestamp}
dependencies:
- id: gamebox
versionConstrain: ">= ${gamebox.version}"

0 comments on commit de2d951

Please sign in to comment.