/
linkfly
/
MasterKnight
Обзор
Документация
Войти
/
linkfly
/
MasterKnight
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
Source/Multiplayer/Public/MultiplayerComponent.h
27 строк
743 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. #pragma once #include "CoreMinimal.h" #include "MultiplayerControllerComp.h" #include "MultiplayerComponent.generated.h" UCLASS(Blueprintable, ClassGroup=(Custom), meta=(BlueprintSpawnableComponent)) class MULTIPLAYER_API UMultiplayerComponent : public UMultiplayerControllerComp { GENERATED_BODY() public: // Sets default values for this component's properties UMultiplayerComponent(); protected: // Called when the game starts virtual void BeginPlay() override; public: // Called every frame virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override; };