sm64coopdx/src/pc/djui/djui_slider.h
2021-06-25 15:50:31 -07:00

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);