Files
open-conflict/Source/OpenConflict/DDIGamemodeBase.h
Cody Larkin 2d860b2a53 Setup for character
movement not working
2025-11-20 13:23:00 -05:00

49 lines
665 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "DDIGamemodeBase.generated.h"
/**
*
*/
UCLASS()
class OPENCONFLICT_API ADDIGamemodeBase : public AGameModeBase
{
GENERATED_BODY()
/*UPROPERTY and UFUNCTION declarations*/
private:
/*Properties*/
/*Functions*/
protected:
/*Properties*/
/*Functions*/
public:
/*Properties*/
/*Functions*/
/*C++ only declarations*/
private:
/*Properties*/
/*Functions*/
protected:
/*Properties*/
/*Functions*/
virtual void BeginPlay() override;
public:
/*Properties*/
/*Functions*/
};