#ifndef _IDRAWABLE_h #define _IDRAWABLE_h #include "watchos_types.h" /// /// Something that can be drawn on the screen by the UI module /// class IDrawable { public: /// /// Draw this object's interface /// /// the handle of the window we are drawing virtual void draw(kernel_handle_t handle) = 0; }; #endif