Reorganize project sources from src/main to src/main/java

This commit is contained in:
Gary Tierney
2017-05-28 22:04:34 +01:00
parent 7ffef28117
commit 05e20d9d51
680 changed files with 225 additions and 171 deletions
@@ -0,0 +1,8 @@
import org.apollo.game.message.impl.AddIgnoreMessage
import org.apollo.game.message.impl.RemoveIgnoreMessage
on { AddIgnoreMessage::class }
.then { player -> player.addIgnore(username) }
on { RemoveIgnoreMessage::class }
.then { player -> player.removeIgnore(username) }