/
linkfly
/
MasterKnight
Обзор
Документация
Войти
/
linkfly
/
MasterKnight
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
Source/Multiplayer/Private/MultiplayerComponent.cpp
35 строк
833 B
Сергей Катревич
[hw-29] Created lobby for multiplayer
30 мар 2026, 21:02
30 мар 2026, 21:02
06ecb15
Код
Авторство
О чём код?
// Fill out your copyright notice in the Description page of Project Settings. #include "MultiplayerComponent.h" // Sets default values for this component's properties UMultiplayerComponent::UMultiplayerComponent() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to improve performance if you don't need them. PrimaryComponentTick.bCanEverTick = true; // ... } // Called when the game starts void UMultiplayerComponent::BeginPlay() { Super::BeginPlay(); // ... } // Called every frame void UMultiplayerComponent::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) { Super::TickComponent(DeltaTime, TickType, ThisTickFunction); // ... }