2022-05-07 15:11:53 +00:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "GameFramework/GameMode.h"
|
|
|
|
#include "BlasterGameMode.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class BLASTER_API ABlasterGameMode : public AGameMode
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2022-05-07 17:10:32 +00:00
|
|
|
virtual void PlayerEliminated(class ABlasterCharacter* EliminatedCharacter, class ABlasterPlayerController* VictimController, class ABlasterPlayerController* AttackerController);
|
2022-05-07 18:34:40 +00:00
|
|
|
virtual void RequestRespawn(ACharacter* EliminatedCharacter, AController* EliminatedController);
|
2022-05-07 15:11:53 +00:00
|
|
|
};
|