Seaside/SpyCustom/modes.h

15 lines
195 B
C
Raw Normal View History

2021-06-16 16:11:47 +03:00
#if !defined( MODES_H )
#define MODES_H
#ifdef _WIN32
#pragma once
#endif
typedef struct vmode_s
{
int width;
int height;
int bpp;
int refreshRate;
} vmode_t;
#endif