xref: /StarryEngine/starry_toolkit/src/traits/text.rs (revision 282ef85ca13266353a8fb594bdc60918a2715518)
1 use starry_client::base::color::Color;
2 
3 pub trait Text {
4     fn set_text<S: Into<String>>(&self, text: S) -> &Self;
5 
6     fn set_text_color(&self, color: Color) -> &Self;
7 }
8