mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
//// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
//// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
//// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
//// PARTICULAR PURPOSE.
|
|
////
|
|
//// Copyright (c) Microsoft Corporation. All rights reserved
|
|
#pragma once
|
|
|
|
#if TV_API
|
|
|
|
namespace Microsoft {
|
|
namespace Xbox {
|
|
namespace GameChat {
|
|
|
|
//----------------------------------------------------------------------------------------------
|
|
// Namespaces
|
|
//----------------------------------------------------------------------------------------------
|
|
namespace Mwrl = Microsoft::WRL;
|
|
namespace Mwrlw = Microsoft::WRL::Wrappers;
|
|
namespace Wf = Windows::Foundation;
|
|
namespace Awf = ABI::Windows::Foundation;
|
|
namespace Awfc = ABI::Windows::Foundation::Collections;
|
|
namespace Wss = Windows::Storage::Streams;
|
|
namespace Awss = ABI::Windows::Storage::Streams;
|
|
namespace Wxs = Windows::Xbox::System;
|
|
namespace Awxs = ABI::Windows::Xbox::System;
|
|
namespace Awxi = ABI::Windows::Xbox::Input;
|
|
}}}
|
|
|
|
#endif
|