2025-11-01 03:42:11 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
#include "Mw/Core.h"
|
|
|
|
|
#include <Mw/Milsko.h>
|
|
|
|
|
#include <Mw/LowLevelMath.h>
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
MwWidget w = MwVaCreateWidget(MwWindowClass, "main", NULL, MwDEFAULT,
|
|
|
|
|
MwDEFAULT, 640, 480, MwNtitle, "test", NULL);
|
|
|
|
|
|
|
|
|
|
MwWidget cpicker = MwColorPicker(w, "cpicker");
|
|
|
|
|
|
2025-11-01 03:59:45 +00:00
|
|
|
(void)cpicker;
|
|
|
|
|
|
2025-11-01 03:42:11 +00:00
|
|
|
MwLoop(w);
|
|
|
|
|
}
|