/
VladimirGavrilov
/
TestProjectMultiplayer
Обзор
Документация
Войти
/
VladimirGavrilov
/
TestProjectMultiplayer
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Source/TestProjectEditor.Target.cs
16 строк
440 B
VladimirGavrilov
added steam sdk to the project. Now the game client can work ONLY through MatchmakerApp. If you need to use the lobby and match without MatchmakerApp, use the previous commit
24 апр 2025, 02:40
24 апр 2025, 02:40
af35be5
Код
Авторство
О чём код?
// Fill out your copyright notice in the Description page of Project Settings. using UnrealBuildTool; using System.Collections.Generic; public class TestProjectEditorTarget : TargetRules { public TestProjectEditorTarget(TargetInfo Target) : base(Target) { Type = TargetType.Editor; DefaultBuildSettings = BuildSettingsVersion.V5; bUsesSteam = true; ExtraModuleNames.AddRange( new string[] { "TestProject" } ); } }