From a7e961bcd2f1e8d98f2ffbb5ff37c2e7f9b981d1 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 19 Apr 2025 20:48:00 +0500 Subject: feat: show emotes --- src/emote.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/emote.php (limited to 'src/emote.php') diff --git a/src/emote.php b/src/emote.php new file mode 100644 index 0000000..5d39e42 --- /dev/null +++ b/src/emote.php @@ -0,0 +1,36 @@ +id = $id; + $this->code = $code; + $this->ext = $ext; + $this->created_at = $created_at; + } + + function get_id() + { + return $this->id; + } + + function get_code() + { + return $this->code; + } + + function get_ext() + { + return $this->ext; + } + + function get_created_at() + { + return $this->created_at; + } +} -- cgit v1.2.3