Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
524 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#define UE_API TEXTUREGRAPHENGINE_API
/**
*
*/
class Device_CL
{
public:
UE_API Device_CL();
UE_API virtual ~Device_CL();
virtual const char* Name() const { return "Device_CL"; }
//////////////////////////////////////////////////////////////////////////
/// Static functions
//////////////////////////////////////////////////////////////////////////
static UE_API Device_CL* Get();
};
#undef UE_API