aboutsummaryrefslogtreecommitdiff
path: root/src/zenovermind/overmindconfig.cpp
blob: 63e955725d9a1d091a9365b3e89923f4de025231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright Epic Games, Inc. All Rights Reserved.

#include <zenovermind/overmindconfig.h>

namespace zen::overmind {

bool
OvermindConfig::Validate() const
{
	if (ServerUrl.empty())
	{
		return false;
	}

	if (Namespace.empty())
	{
		return false;
	}

	if (CommandRef.empty())
	{
		return false;
	}

	return true;
}

}  // namespace zen::overmind