cave-story-solaris/src/WindowsWrapper.h
2019-01-22 22:04:35 -05:00

18 lines
169 B
C

#pragma once
struct RECT
{
union
{
int left;
int front;
};
int top;
union
{
int right;
int back;
};
int bottom;
};
bool SystemTask();