12 lines
171 B
C++
12 lines
171 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
namespace PathTracing
|
|
{
|
|
enum class EInvalidateReason
|
|
{
|
|
UpdateMaterialParameter,
|
|
Uncategorized
|
|
};
|
|
} |