mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-18 16:31:44 +03:00
16 lines
160 B
C++
16 lines
160 B
C++
#include "common.h"
|
|
|
|
#if WINDOWS_LIKE
|
|
|
|
#include "CWin32Platform.cpp"
|
|
|
|
#elif UNIX_LIKE
|
|
|
|
#include "CUnixPlatform.cpp"
|
|
|
|
#else
|
|
|
|
#error Unsupported platform
|
|
|
|
#endif
|