mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-10 19:22:10 +08:00
15 lines
195 B
C
15 lines
195 B
C
#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 |