Added : GameMode C++ file

This commit is contained in:
Emilie Schott 2025-01-21 16:14:32 +01:00
parent dde9f34958
commit 075533474d
3 changed files with 24 additions and 2 deletions

BIN
Content/Legumix/BP_GameMode.uasset (Stored with Git LFS)

Binary file not shown.

View File

@ -0,0 +1,5 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "LMGameMode.h"

View File

@ -0,0 +1,17 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "LMGameMode.generated.h"
/**
*
*/
UCLASS()
class LEGUMEMIX_API ALMGameMode : public AGameModeBase
{
GENERATED_BODY()
};