14 lines
236 B
C
14 lines
236 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "../Desktop/Window.h"
|
||
|
|
#include "../Mobile/Window.h"
|
||
|
|
|
||
|
|
namespace WinServer {
|
||
|
|
|
||
|
|
#ifdef TARGET_DESKTOP
|
||
|
|
using Window = Desktop::Window;
|
||
|
|
#elif TARGET_MOBILE
|
||
|
|
using Window = Mobile::Window;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
} // namespace WinServer
|