Removes WhiteBoxAllocator and EditorWhiteBoxBus from Gems/WhiteBox

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2022-01-06 16:11:39 -08:00
parent 223baa7e45
commit c1d2da990a
6 changed files with 0 additions and 82 deletions
@@ -7,7 +7,6 @@
*/
#include "Components/WhiteBoxColliderComponent.h"
#include "WhiteBoxAllocator.h"
#include "WhiteBoxComponent.h"
#include "WhiteBoxModule.h"
#include "WhiteBoxSystemComponent.h"
@@ -19,8 +18,6 @@ namespace WhiteBox
WhiteBoxModule::WhiteBoxModule()
: CryHooksModule()
{
AZ::AllocatorInstance<WhiteBoxAllocator>::Create();
// push results of [MyComponent]::CreateDescriptor() into m_descriptors here
m_descriptors.insert(
m_descriptors.end(),
@@ -33,7 +30,6 @@ namespace WhiteBox
WhiteBoxModule::~WhiteBoxModule()
{
AZ::AllocatorInstance<WhiteBoxAllocator>::Destroy();
}
AZ::ComponentTypeList WhiteBoxModule::GetRequiredSystemComponents() const