Files
OpenVulkano/openVulkanoCpp/Host/iOS/BundledResoureLoaderIos.h
2023-11-17 21:33:44 +01:00

19 lines
461 B
Objective-C

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#pragma once
#import <Foundation/Foundation.h>
#include "Host/ResourceLoader.hpp"
namespace OpenVulkano
{
class BundledResourceLoaderIOS : public ResourceLoader
{
public:
Array<char> GetResource(const std::string& resourceName) override;
};
}