You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Added new DD background icons and badges to Starship Style Added back support for DD notifications Moved DDNotifications into DDEditorModule #rb devin.doucette, matt.kuhlenschmidt #preflight 613f31e9c136f100013263b8 [CL 17490903 by mark lintott in ue5-main branch]
17 lines
253 B
C++
17 lines
253 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class DERIVEDDATAEDITOR_API IDerivedDataCacheNotifications
|
|
{
|
|
public:
|
|
IDerivedDataCacheNotifications()
|
|
{
|
|
}
|
|
|
|
virtual ~IDerivedDataCacheNotifications()
|
|
{
|
|
}
|
|
}; |