5 lines
50 B
Rust
5 lines
50 B
Rust
|
use std::any::Any;
|
||
|
|
||
|
pub trait Component : Any {
|
||
|
|
||
|
}
|