mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
11 lines
241 B
C
11 lines
241 B
C
|
#ifndef LEGOINC_H
|
||
|
#define LEGOINC_H
|
||
|
|
||
|
// It is recommended to include this over <windows.h> directly because this way
|
||
|
// we can undef stuff that might cause issues with our code.
|
||
|
|
||
|
#include <windows.h>
|
||
|
#undef GetClassName
|
||
|
|
||
|
#endif // LEGOINC_H
|