12 lines
270 B
C
12 lines
270 B
C
// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if PLATFORM_WIN32
|
|
#include "Win32/Win32VulkanPlatform.h"
|
|
#elif PLATFORM_LINUX
|
|
#include "Linux/LinuxVulkanPlatform.h"
|
|
#elif PLATFORM_ANDROID
|
|
#include "Android/AndroidVulkanPlatform.h"
|
|
#endif
|