| 41 | } |
| 42 | |
| 43 | Drawable InterfaceCursor::drawable() const { |
| 44 | if (m_drawable.is<String>()) |
| 45 | return Drawable::makeImage(m_drawable.get<String>(), 1.0f, false, {}); |
| 46 | else |
| 47 | return m_drawable.get<Animation>().drawable(1.0f); |
| 48 | } |
| 49 | |
| 50 | Vec2I InterfaceCursor::size() const { |
| 51 | return m_size; |
no outgoing calls
no test coverage detected