| 315 | void Create(int x, int y, int w, int h); // define the ui object. |
| 316 | void Destroy() { m_Created = false; }; |
| 317 | bool IsCreated() const { return m_Created; }; |
| 318 | |
| 319 | // data access |
| 320 | int X() const { return m_X; }; // access the X,Y,W,H fields. |
no outgoing calls
no test coverage detected