Files
milsko/examples/basic/color_picker.c
2025-11-01 03:42:11 +00:00

15 lines
291 B
C

/* $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");
MwLoop(w);
}