15 lines
267 B
C
15 lines
267 B
C
// Copyright (c) Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if PLATFORM_WINDOWS
|
|
|
|
#include "../Win32/Win32Defines.h"
|
|
|
|
// Platform description
|
|
#define PLATFORM_TYPE PlatformType::Windows
|
|
#define PLATFORM_HAS_HEADLESS_MODE 1
|
|
#define PLATFORM_DESKTOP 1
|
|
|
|
#endif
|