Initial commit
This commit is contained in:
commit
ba14820cdd
94 changed files with 1123 additions and 0 deletions
20
Source/Minecraft/MinecraftGameModeBase.h
Normal file
20
Source/Minecraft/MinecraftGameModeBase.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "GameFramework/GameModeBase.h"
|
||||
#include "MinecraftGameModeBase.generated.h"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class MINECRAFT_API AMinecraftGameModeBase : public AGameModeBase
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
Reference in a new issue