fix: node aspect drawable

This commit is contained in:
Nova
2023-02-09 03:58:56 -05:00
parent 40e7c6cd20
commit 37f283b393
2 changed files with 2 additions and 8 deletions

View File

@@ -2,11 +2,7 @@ pub mod lines;
pub mod model;
pub mod text;
use self::{
lines::Lines,
model::{Model, ModelNode},
text::Text,
};
use self::{lines::Lines, model::Model, text::Text};
use super::Node;
use crate::core::client::Client;
@@ -30,7 +26,6 @@ pub fn create_interface(client: &Arc<Client>) -> Result<()> {
pub enum Drawable {
Lines(Arc<Lines>),
Model(Arc<Model>),
ModelNode(Arc<ModelNode>),
Text(Arc<Text>),
}