2020-04-08 21:35:08 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
|
#include "Mixins.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockObserverHandler:
|
|
|
|
|
public cClearMetaOnDrop<cPitchYawRotator<cBlockHandler>>
|
|
|
|
|
{
|
2020-04-13 18:38:06 +02:00
|
|
|
using Super = cClearMetaOnDrop<cPitchYawRotator<cBlockHandler>>;
|
2020-04-08 21:35:08 +01:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
2020-04-13 18:38:06 +02:00
|
|
|
cBlockObserverHandler(BLOCKTYPE a_BlockType) : Super(a_BlockType)
|
2020-04-08 21:35:08 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|