cave-story-solaris/src/ValueView.h
2020-01-07 04:50:15 +00:00

19 lines
311 B
C

#pragma once
#include "WindowsWrapper.h"
typedef struct VALUEVIEW
{
BOOL flag;
int *px;
int *py;
int offset_y;
int value;
int count;
RECT rect;
} VALUEVIEW;
void ClearValueView(void);
void SetValueView(int *px, int *py, int value);
void ActValueView(void);
void PutValueView(int flx, int fly);