Initial commit
This commit is contained in:
commit
ba14820cdd
94 changed files with 1123 additions and 0 deletions
19
Source/Minecraft/CPPController.cpp
Normal file
19
Source/Minecraft/CPPController.cpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "CPPController.h"
|
||||
|
||||
void ACPPController::BeginPlay()
|
||||
{
|
||||
Super::BeginPlay();
|
||||
|
||||
ChunkSize = ChunkLineElements * VoxelSize;
|
||||
|
||||
ChunkSizeHalf = ChunkSize / 1;
|
||||
|
||||
}
|
||||
|
||||
void ACPPController::Tick(float DeltaTime)
|
||||
{
|
||||
Super::Tick(DeltaTime);
|
||||
|
||||
}
|
Reference in a new issue