14 lines
325 B
C++
14 lines
325 B
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "SevenStarsGameMode.h"
|
|
#include "SevenStarsHUD.h"
|
|
#include "SevenStarsCharacter.h"
|
|
#include "UObject/ConstructorHelpers.h"
|
|
|
|
ASevenStarsGameMode::ASevenStarsGameMode()
|
|
: Super()
|
|
{
|
|
// use our custom HUD class
|
|
HUDClass = ASevenStarsHUD::StaticClass();
|
|
}
|