Commit v.2025

This commit is contained in:
2025-06-17 13:17:17 +02:00
parent d16693c85b
commit efae805ae1
50 changed files with 2123 additions and 0 deletions

View File

@ -0,0 +1,29 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Types/Interfaces/DTFluxDataCollector.h"
#include "DTFluxReceiverChannel.generated.h"
/**
*
*/
USTRUCT(BlueprintType)
struct DTFLUXNETWORK_API FDTFluxReceiverChannel
{
GENERATED_BODY()
public:
FDTFluxReceiverChannel(){};
~FDTFluxReceiverChannel(){};
UPROPERTY(BlueprintReadOnly)
FName ChannelId = FName("FDTFluxReceiverChannel_Default");
UPROPERTY(BlueprintReadOnly)
FName ProtocolId = FName("NoProtocol");
UPROPERTY()
TSubclassOf<IDTFluxDataCollector> DataCollectorClass;
};