18 lines
418 B
C++
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;
|
|
}
|