Created
November 18, 2020 03:24
-
-
Save RoyAwesome/d13f1c1b13d56b71e8179d879b5f65e0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fill out your copyright notice in the Description page of Project Settings. | |
#include "ArcInvExampleEngineSubsys.h" | |
#include "AbilitySystemGlobals.h" | |
void UArcInvExampleEngineSubsys::Initialize(FSubsystemCollectionBase& Collection) | |
{ | |
Super::Initialize(Collection); | |
UAbilitySystemGlobals::Get().InitGlobalData(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fill out your copyright notice in the Description page of Project Settings. | |
#pragma once | |
#include "CoreMinimal.h" | |
#include "Subsystems/EngineSubsystem.h" | |
#include "ArcInvExampleEngineSubsys.generated.h" | |
/** | |
* | |
*/ | |
UCLASS() | |
class ARCINVENTORYEXAMPLE_API UArcInvExampleEngineSubsys : public UEngineSubsystem | |
{ | |
GENERATED_BODY() | |
public: | |
virtual void Initialize(FSubsystemCollectionBase& Collection) override; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment