-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d42fe5f
commit d734368
Showing
91 changed files
with
1,290 additions
and
104 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
Source/DummyHeaders/Public/Audio/AudioMeter/IAudioMeterImpl.h
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
class DUMMYHEADERS_API IAudioMeterImpl {}; |
8 changes: 8 additions & 0 deletions
8
Source/FactoryGame/Private/Audio/FGVoiceChatAudioMeterSubsystem.cpp
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include "Audio/FGVoiceChatAudioMeterSubsystem.h" | ||
|
||
AFGVoiceChatAudioMeterSubsystem::AFGVoiceChatAudioMeterSubsystem(){ } | ||
void AFGVoiceChatAudioMeterSubsystem::BeginPlay(){ Super::BeginPlay(); } | ||
void AFGVoiceChatAudioMeterSubsystem::EndPlay(const EEndPlayReason::Type EndPlayReason){ Super::EndPlay(EndPlayReason); } | ||
void AFGVoiceChatAudioMeterSubsystem::Tick(float DeltaTime){ Super::Tick(DeltaTime); } | ||
void AFGVoiceChatAudioMeterSubsystem::ConvertPeakToRTPC(float peak, float DeltaTime){ } | ||
void AFGVoiceChatAudioMeterSubsystem::SetRTPC(float AudioMeterValue){ } |
7 changes: 7 additions & 0 deletions
7
Source/FactoryGame/Private/AvailabilityDependencies/FGCalendarOpenedDependency.cpp
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include "AvailabilityDependencies/FGCalendarOpenedDependency.h" | ||
|
||
bool UFGCalendarOpenedDependency::AreDependenciesMet( UObject* worldContext ) const{ return bool(); } | ||
#if WITH_EDITOR | ||
FString UFGCalendarOpenedDependency::ToString() const{ return FString(); } | ||
void UFGCalendarOpenedDependency::FromString( const FString& inString ){ } | ||
#endif |
8 changes: 8 additions & 0 deletions
8
Source/FactoryGame/Private/AvailabilityDependencies/FGCalendarSlotUnlockedDependency.cpp
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include "AvailabilityDependencies/FGCalendarSlotUnlockedDependency.h" | ||
|
||
UFGCalendarSlotUnlockedDependency::UFGCalendarSlotUnlockedDependency(){ } | ||
bool UFGCalendarSlotUnlockedDependency::AreDependenciesMet( UObject* worldContext ) const{ return bool(); } | ||
#if WITH_EDITOR | ||
FString UFGCalendarSlotUnlockedDependency::ToString() const{ return FString(); } | ||
void UFGCalendarSlotUnlockedDependency::FromString( const FString& inString ){ } | ||
#endif |
7 changes: 7 additions & 0 deletions
7
Source/FactoryGame/Private/AvailabilityDependencies/FGEventDisabledDependency.cpp
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include "AvailabilityDependencies/FGEventDisabledDependency.h" | ||
|
||
bool UFGEventDisabledDependency::AreDependenciesMet( UObject* worldContext ) const{ return bool(); } | ||
#if WITH_EDITOR | ||
FString UFGEventDisabledDependency::ToString() const{ return FString(); } | ||
void UFGEventDisabledDependency::FromString( const FString& inString ){ } | ||
#endif |
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
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
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
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
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
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
9 changes: 9 additions & 0 deletions
9
Source/FactoryGame/Private/Buildables/FGBuildableSnowCannon.cpp
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include "Buildables/FGBuildableSnowCannon.h" | ||
|
||
AFGBuildableSnowCannon::AFGBuildableSnowCannon(){ } | ||
void AFGBuildableSnowCannon::BeginPlay(){ Super::BeginPlay(); } | ||
void AFGBuildableSnowCannon::EndPlay(const EEndPlayReason::Type EndPlayReason){ Super::EndPlay(EndPlayReason); } | ||
void AFGBuildableSnowCannon::GainedSignificance_Implementation(){ } | ||
void AFGBuildableSnowCannon::LostSignificance_Implementation(){ } | ||
void AFGBuildableSnowCannon::SetCannonAngle(int32 angle){ } | ||
void AFGBuildableSnowCannon::UpdateCannonMesh(){ } |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.