Skip to content

Commit b502668

Browse files
Merge branch 'master' of github.com:deusprogrammer/streamcrabs-portable
2 parents 2fa3369 + 0f7fe32 commit b502668

File tree

20 files changed

+1368
-1071
lines changed

20 files changed

+1368
-1071
lines changed

electron/bot/bot.js

Lines changed: 338 additions & 220 deletions
Large diffs are not rendered by default.

electron/bot/botPlugin.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports.BotPlugin = class BotPlugin {
2+
constructor(eventListener) {
3+
this.eventListener = eventListener;
4+
}
5+
6+
init = (botContext) => {
7+
this.botContext = botContext;
8+
}
9+
10+
getCommands = () => ({});
11+
followHook = (event) => {};
12+
bitsHook = (event) => {};
13+
subscriptionHook = (event) => {};
14+
raidHook = (event) => {};
15+
joinHook = (event) => {};
16+
redemptionHook = (event) => {};
17+
wsInitHook = (event) => {};
18+
}

0 commit comments

Comments
 (0)