AzureAbyss/Source/the_twilight_abyss/Quest/Quest.cpp

21 lines
379 B
C++
Raw Normal View History

2023-03-29 16:36:24 +00:00
// Fill out your copyright notice in the Description page of Project Settings.
#include "Quest.h"
bool UQuest::CheckConditions(FJsonObject WorldState)
{
if (Conditions.Values.IsEmpty()) return true;
return false;
}
bool UQuest::CheckPreConditions(FJsonObject WorldState)
{
if (PreConditions.Values.IsEmpty()) return true;
return false;
}
void UQuest::ApplyRewards()
{
}