feat: wip
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "DataAssets/RRDABoilerDataAsset.h"
|
||||
@@ -0,0 +1,3 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "DataAssets/RRDACoolerDataAsset.h"
|
||||
30
Source/RefinedRDApi/Private/DataAssets/RRDADirtDataAsset.cpp
Normal file
30
Source/RefinedRDApi/Private/DataAssets/RRDADirtDataAsset.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "DataAssets/RRDADirtDataAsset.h"
|
||||
|
||||
#include "RefinedRDApi.h"
|
||||
|
||||
TArray<FItemAmount> URRDADirtDataAsset::GetExtractableSeed(URRDADirtDataAsset* Asset)
|
||||
{
|
||||
if(!Asset)
|
||||
{
|
||||
return TArray<FItemAmount>();
|
||||
}
|
||||
return Asset->mExtractableSeed;
|
||||
}
|
||||
|
||||
float URRDADirtDataAsset::GetExtractionCycleTime(URRDADirtDataAsset* Asset) {
|
||||
if(!Asset)
|
||||
{
|
||||
return 0.f;
|
||||
}
|
||||
return Asset->mExtractionCycleTime;
|
||||
}
|
||||
|
||||
int32 URRDADirtDataAsset::GetDirtConsume(URRDADirtDataAsset* Asset) {
|
||||
if(!Asset)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return Asset->mDirtConsume;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "DataAssets/RRDAHeaterDataAsset.h"
|
||||
@@ -0,0 +1,3 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "DataAssets/RRDATurbineDataAsset.h"
|
||||
Reference in New Issue
Block a user