mirror of
https://github.com/lightsoutgames/bevy_tts.git
synced 2024-11-21 19:55:57 +00:00
Remove Clone
since it isn't support on macOS.
This commit is contained in:
parent
7104b75fe0
commit
2bf7ce2320
|
@ -2,7 +2,7 @@ use bevy::prelude::*;
|
||||||
use crossbeam_channel::{unbounded, Receiver};
|
use crossbeam_channel::{unbounded, Receiver};
|
||||||
pub use tts::{Backends, Error, Features, Tts, UtteranceId};
|
pub use tts::{Backends, Error, Features, Tts, UtteranceId};
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Debug)]
|
||||||
pub enum TtsEvent {
|
pub enum TtsEvent {
|
||||||
UtteranceBegin(UtteranceId),
|
UtteranceBegin(UtteranceId),
|
||||||
UtteranceEnd(UtteranceId),
|
UtteranceEnd(UtteranceId),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user