ComboInput/Source/ComboInput/Private/Interfaces/ComboHandlerInterface.cpp
2023-09-09 17:28:41 -04:00

18 lines
418 B
C++

// ©2022 Batty Bovine Productions, LLC. All Rights Reserved.
#include "Interfaces/ComboHandlerInterface.h"
#include "Components/ComboManagerComponent.h"
#include "Components/InputBufferComponent.h"
UInputBufferComponent *IComboHandlerInterface::GetInputBuffer_Implementation() const
{
return nullptr;
}
UComboManagerComponent *IComboHandlerInterface::GetComboManager_Implementation() const
{
return nullptr;
}