xref: /StarryEngine/starry_toolkit/src/traits/text.rs (revision 48d97639c61db7d12182c250896dd116973d24c5)
1 pub trait Text {
2     fn text<S: Into<String>>(&self, text: S) -> &Self;
3     fn text_offset(&self, x: i32, y: i32) -> &Self;
4 }
5