Files
o3de/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetNotificationBus.h
T
2021-06-23 10:55:22 -07:00

25 lines
611 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <AzCore/EBus/EBus.h>
namespace AzFramework
{
class MissingAssetNotifications
: public AZ::EBusTraits
{
public:
static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single;
static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single;
virtual void FileMissing(const char* filePath) = 0;
};
using MissingAssetNotificationBus = AZ::EBus<MissingAssetNotifications>;
}