From d5646f1dc8561f0205c7e87ba98387367b97089e Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Tue, 16 May 2023 12:56:51 -0700 Subject: [PATCH] le sigh for le ci --- .../windows/base_platform_windows_oculus.cc | 23 ------------------- .../windows/base_platform_windows_oculus.h | 22 ------------------ 2 files changed, 45 deletions(-) delete mode 100644 src/ballistica/base/platform/windows/base_platform_windows_oculus.cc delete mode 100644 src/ballistica/base/platform/windows/base_platform_windows_oculus.h diff --git a/src/ballistica/base/platform/windows/base_platform_windows_oculus.cc b/src/ballistica/base/platform/windows/base_platform_windows_oculus.cc deleted file mode 100644 index d3ea8e75..00000000 --- a/src/ballistica/base/platform/windows/base_platform_windows_oculus.cc +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2011-2022 Eric Froemling - -#if BA_RIFT_BUILD -#include "ballistica/base/platform/windows/base_platform_windows_oculus.h" - -#include "ballistica/core/platform/oculus/oculus_utils.h" - -namespace ballistica::base { - -BasePlatformWindowsOculus::BasePlatformWindowsOculus() {} - -void BasePlatformWindowsOculus::DoPurchase(const std::string& item) { - core::OculusUtils::Purchase(item); -} - -void BasePlatformWindowsOculus::PurchaseAck(const std::string& purchase, - const std::string& order_id) { - core::OculusUtils::ConsumePurchase(purchase); -} - -} // namespace ballistica::base - -#endif // BA_RIFT_BUILD diff --git a/src/ballistica/base/platform/windows/base_platform_windows_oculus.h b/src/ballistica/base/platform/windows/base_platform_windows_oculus.h deleted file mode 100644 index 8a411cca..00000000 --- a/src/ballistica/base/platform/windows/base_platform_windows_oculus.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2011-2022 Eric Froemling - -#ifndef BALLISTICA_BASE_PLATFORM_WINDOWS_BASE_PLATFORM_WINDOWS_OCULUS_H_ -#define BALLISTICA_BASE_PLATFORM_WINDOWS_BASE_PLATFORM_WINDOWS_OCULUS_H_ -#if BA_RIFT_BUILD - -#include "ballistica/base/platform/windows/base_platform_windows.h" - -namespace ballistica::base { - -class BasePlatformWindowsOculus : public BasePlatformWindows { - public: - BasePlatformWindowsOculus(); - void DoPurchase(const std::string& item) override; - void PurchaseAck(const std::string& purchase, - const std::string& order_id) override; -}; - -} // namespace ballistica::base - -#endif // BA_RIFT_BUILD -#endif // BALLISTICA_BASE_PLATFORM_WINDOWS_BASE_PLATFORM_WINDOWS_OCULUS_H_