use serde::{Deserialize, Serialize};
use crate::*;
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case", tag = "type", content = "data")]
pub enum TextureEvents {
TextureSet(Texture),
TextureRemoved { name: TextureName },
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case", tag = "type", content = "data")]
pub enum TextureRequests {
SetTexture(Texture),
RemoveTexture { name: TextureName },
GetTexture { name: TextureName },
ListTextures,
}