Я пересоздал репозиторий из-за большого количества мусора в прошлом

This commit is contained in:
Jiga228
2025-09-14 15:00:44 +07:00
commit 78a25b305b
74 changed files with 3428 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "TestActor.h"
#include "Log/Log.h"
void TestActor::BeginPlay()
{
Actor::BeginPlay();
Log("TestActor::BeginPlay");
}
+10
View File
@@ -0,0 +1,10 @@
#pragma once
#include "Game/Actors/Actor.h"
GENERATE_META(TestActor)
class TestActor final : public Actor
{
public:
void BeginPlay() override;
};