1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 07:23:14 +02:00
- Added stub class `ReceiverThread`

Sender

- Added stub class `SenderThread`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-08 17:36:05 +02:00
parent f32c8671c6
commit 8e0854e5b5
2 changed files with 20 additions and 0 deletions

View File

@ -1,2 +1,12 @@
module birchwood.client.receiver; module birchwood.client.receiver;
import core.thread : Thread;
// TODO: Examine the below import which seemingly fixes stuff for libsnooze
import libsnooze.clib;
import libsnooze;
public final class ReceiverThread : Thread
{
}

View File

@ -1,2 +1,12 @@
module birchwood.client.sender; module birchwood.client.sender;
import core.thread : Thread;
// TODO: Examine the below import which seemingly fixes stuff for libsnooze
import libsnooze.clib;
import libsnooze;
public final class SenderThread : Thread
{
}