// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Linq; namespace nDisplayLauncher.Cluster.Config.Entity { public abstract class EntityBase { public abstract void InitializeFromText(string text); } }