-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
112 additions
and
119 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/main/java/com/konloch/ircbot/listener/IRCChannelMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.konloch.ircbot.listener; | ||
|
||
import com.konloch.ircbot.listener.event.ChannelMessageEvent; | ||
|
||
/** | ||
* @author Konloch | ||
* @since 12/15/2023 | ||
*/ | ||
public interface IRCChannelMessage | ||
{ | ||
void message(ChannelMessageEvent event); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
package com.konloch.ircbot.listener; | ||
|
||
import com.konloch.ircbot.listener.event.GenericRoomEvent; | ||
import com.konloch.ircbot.server.Room; | ||
import com.konloch.ircbot.server.User; | ||
import com.konloch.ircbot.listener.event.GenericChannelEvent; | ||
|
||
/** | ||
* @author Konloch | ||
* @since 12/15/2023 | ||
*/ | ||
public interface IRCJoin | ||
{ | ||
void join(GenericRoomEvent event); | ||
void join(GenericChannelEvent event); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
package com.konloch.ircbot.listener; | ||
|
||
import com.konloch.ircbot.listener.event.GenericRoomEvent; | ||
import com.konloch.ircbot.server.Room; | ||
import com.konloch.ircbot.server.User; | ||
import com.konloch.ircbot.listener.event.GenericChannelEvent; | ||
|
||
/** | ||
* @author Konloch | ||
* @since 12/15/2023 | ||
*/ | ||
public interface IRCLeave | ||
{ | ||
void leave(GenericRoomEvent event); | ||
void leave(GenericChannelEvent event); | ||
} |
14 changes: 0 additions & 14 deletions
14
src/main/java/com/konloch/ircbot/listener/IRCRoomMessage.java
This file was deleted.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
...cbot/listener/event/RoomMessageEvent.java → ...t/listener/event/ChannelMessageEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
...cbot/listener/event/GenericRoomEvent.java → ...t/listener/event/GenericChannelEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.