#ifdef INTERFACE CLASS(VoretRootDialog) EXTENDS(VoretDialog) // still to be customized by user /* ATTRIB(VoretDialog, closable, float, 1) ATTRIB(VoretDialog, title, string, "Form1") // ;) ATTRIB(VoretDialog, color, vector, '1 0.5 1') ATTRIB(VoretDialog, intendedWidth, float, 0) ATTRIB(VoretDialog, rows, float, 3) ATTRIB(VoretDialog, columns, float, 2) */ METHOD(VoretRootDialog, close, void(entity)) ENDCLASS(VoretRootDialog) #endif #ifdef IMPLEMENTATION void closeVoretRootDialog(entity me) { m_goto(string_null); } #endif