aboutsummaryrefslogtreecommitdiffstats
path: root/include/dbs/abstract.h
diff options
context:
space:
mode:
authorturret <turret@duck.com>2025-09-29 00:12:05 -0500
committerturret <turret@duck.com>2025-09-29 00:12:05 -0500
commit535ff19dd942d9d53228200eea9096e7e59f76f8 (patch)
treeb2109d68a00b42edf80f26791866b0a9f4de4461 /include/dbs/abstract.h
parent236887a2e380e57b31b2ad4efb3075a63199df3a (diff)
downloaddiscord-bot-skeleton-535ff19dd942d9d53228200eea9096e7e59f76f8.tar.gz
discord-bot-skeleton-535ff19dd942d9d53228200eea9096e7e59f76f8.tar.bz2
discord-bot-skeleton-535ff19dd942d9d53228200eea9096e7e59f76f8.zip
abstract: add interaction responses
Diffstat (limited to 'include/dbs/abstract.h')
-rw-r--r--include/dbs/abstract.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/dbs/abstract.h b/include/dbs/abstract.h
new file mode 100644
index 0000000..62ec410
--- /dev/null
+++ b/include/dbs/abstract.h
@@ -0,0 +1,8 @@
+#ifndef __DBS_ABSTRACT_H
+#define __DBS_ABSTRACT_H
+
+int interaction_reply(cJSON *i, char *content, int raw);
+int interaction_defer_reply(cJSON *i, int hidden);
+int interaction_edit_reply(cJSON *i, char *content, int raw);
+
+#endif