mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-05-09 10:21:50 +00:00
15 lines
395 B
C
15 lines
395 B
C
#pragma once
|
|
#include "djui.h"
|
|
|
|
#pragma pack(1)
|
|
struct DjuiSlider {
|
|
struct DjuiBase base;
|
|
struct DjuiRect* rect;
|
|
struct DjuiRect* rectValue;
|
|
struct DjuiText* text;
|
|
unsigned int* value;
|
|
unsigned int min;
|
|
unsigned int max;
|
|
};
|
|
|
|
struct DjuiSlider* djui_slider_create(struct DjuiBase* parent, const char* message, unsigned int* value, unsigned int min, unsigned int max);
|