first commit

This commit is contained in:
smsteel
2019-02-06 15:08:56 +03:00
commit 23e8120c82
9 changed files with 262 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package mcwebhooks;
final class JoinHookEvent extends PlayerHookEvent
{
public JoinHookEvent(String displayName) {
super(displayName);
this.type = "login";
}
}