2022-10-10 18:54:54 +00:00
|
|
|
#include <proto/intuition.h>
|
|
|
|
#include <proto/dos.h>
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
struct Window *window;
|
|
|
|
|
|
|
|
window = OpenWindowTags(NULL,
|
2022-11-25 14:22:57 +00:00
|
|
|
WA_Title, "Topaz's Pizza Timer",
|
|
|
|
WA_Width, 240,
|
|
|
|
WA_Height, 80,
|
|
|
|
WA_Top, 20,
|
|
|
|
WA_Left, 20,
|
|
|
|
WA_DragBar, TRUE,
|
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_CloseGadget, TRUE,
|
|
|
|
WA_Activate, TRUE,
|
2022-10-10 18:54:54 +00:00
|
|
|
TAG_END
|
|
|
|
);
|
|
|
|
|
|
|
|
Delay(200);
|
|
|
|
|
|
|
|
CloseWindow(window);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|