Serialize Editor-made actors

You can automatically populate this at runtime in your EnemyManager class instead of manually assigning it

for (TObjectIterator<UClass> It; It; ++It) {
	UClass* Class = *It;
	if (Class->IsA(AEnemyBase::StaticClass())) {
		// Add Class to your list of enemies
	}
}