Initial commit

This commit is contained in:
Jordon Brooks 2018-04-17 23:43:50 +01:00
commit ba14820cdd
94 changed files with 1123 additions and 0 deletions

View file

@ -0,0 +1,14 @@
// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class MinecraftEditorTarget : TargetRules
{
public MinecraftEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
ExtraModuleNames.AddRange( new string[] { "Minecraft" } );
}
}