bevy-discord 0.9.0

A bevy plugin for sending and receiving discord messages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Internal Channel Plugin, that just add
//! channel resource

use bevy_ecs::prelude::Resource;
use flume::{Receiver, Sender};

#[derive(Resource)]
pub struct ChannelRes<T> {
    pub rx: Receiver<T>,
    pub tx: Sender<T>,
}