16 lines
282 B
C++
16 lines
282 B
C++
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
|
||
|
|
|
||
|
|
#include "RoverGameModeBase.h"
|
||
|
|
|
||
|
|
ARoverGameModeBase* ARoverGameModeBase::BaseGameMode = nullptr;
|
||
|
|
|
||
|
|
ARoverGameModeBase::ARoverGameModeBase()
|
||
|
|
{
|
||
|
|
BaseGameMode = this;
|
||
|
|
}
|
||
|
|
|
||
|
|
void ARoverGameModeBase::Init()
|
||
|
|
{
|
||
|
|
}
|