Files
M4_CPP/Source/M4_CPP/private/M4_CPP.cpp
CatChow0 232a87f026 Adds initial project structure and core classes
Sets up the initial Unreal Engine project structure.
Includes the creation of core classes such as:
- A custom GameMode
- A PlayerController
- A PlayerPawn
- A Centipede Pawn

Also configures Git integration and includes a default level.
2025-10-13 13:01:09 +02:00

10 lines
232 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "M4_CPP.h"
#include "Modules/ModuleManager.h"
#include "M4_LOG.h"
DEFINE_LOG_CATEGORY(M4_CPP)
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, M4_CPP, "M4_CPP" );