mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-17 20:10:23 +03:00
31
platforms/PlatformDefinitions.hpp
Normal file
31
platforms/PlatformDefinitions.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
/********************************************************************
|
||||
Minecraft: Pocket Edition - Decompilation Project
|
||||
Copyright (C) 2023 iProgramInCpp
|
||||
|
||||
The following code is licensed under the BSD 1 clause license.
|
||||
SPDX-License-Identifier: BSD-1-Clause
|
||||
********************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
// Sound Systems
|
||||
#include "client/sound/SoundSystem.hpp"
|
||||
|
||||
#if false
|
||||
|
||||
// Add sound system overrides here
|
||||
|
||||
#elif defined(_WIN32)
|
||||
|
||||
// -- DirectSound based sound system for Windows
|
||||
#include "windows/SoundSystemWindows.hpp"
|
||||
#define SOUND_SYSTEM_TYPE SoundSystemWindows
|
||||
|
||||
#else
|
||||
|
||||
// -- Empty SoundSystem placeholder.
|
||||
#define SOUND_SYSTEM_TYPE SoundSystem
|
||||
|
||||
#endif
|
||||
|
||||
// @TODO: SoundSystemSL - Use this for the Android port
|
||||
Reference in New Issue
Block a user