2023-11-25 20:09:20 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "thread.hpp"
|
|
|
|
|
|
|
|
class Connection;
|
|
|
|
|
|
|
|
// WIP: Use much finer granularity
|
|
|
|
struct SnoteEvent : Event
|
|
|
|
{
|
|
|
|
SnoteEvent(std::string_view raw) : raw{raw} {}
|
|
|
|
std::string_view raw;
|
|
|
|
};
|
|
|
|
|
2023-11-26 15:40:40 -08:00
|
|
|
auto snote_thread(Connection& connection) -> void;
|