mirror of
https://github.com/Theaninova/BeatLanguageMapper.git
synced 2026-01-05 10:02:49 +00:00
15 lines
352 B
C#
15 lines
352 B
C#
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class MediocreMapperTarget : TargetRules
|
|
{
|
|
public MediocreMapperTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "MediocreMapper" } );
|
|
}
|
|
}
|