Fixed style
This commit is contained in:
@@ -8,9 +8,20 @@ class cBlockTripwireHookHandler;
|
||||
class cBlockDoorHandler;
|
||||
class cBlockPistonHandler;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<BLOCKTYPE T>
|
||||
class GetHandlerCompileTime;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<>
|
||||
class GetHandlerCompileTime<E_BLOCK_TORCH>
|
||||
{
|
||||
@@ -18,6 +29,11 @@ public:
|
||||
typedef cBlockTorchHandler type;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<>
|
||||
class GetHandlerCompileTime<E_BLOCK_LEVER>
|
||||
{
|
||||
@@ -25,6 +41,11 @@ public:
|
||||
typedef cBlockLeverHandler type;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<>
|
||||
class GetHandlerCompileTime<E_BLOCK_STONE_BUTTON>
|
||||
{
|
||||
@@ -32,6 +53,11 @@ public:
|
||||
typedef cBlockButtonHandler type;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<>
|
||||
class GetHandlerCompileTime<E_BLOCK_TRIPWIRE_HOOK>
|
||||
{
|
||||
@@ -39,6 +65,11 @@ public:
|
||||
typedef cBlockTripwireHookHandler type;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<>
|
||||
class GetHandlerCompileTime<E_BLOCK_WOODEN_DOOR>
|
||||
{
|
||||
@@ -46,9 +77,15 @@ public:
|
||||
typedef cBlockDoorHandler type;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
template<>
|
||||
class GetHandlerCompileTime<E_BLOCK_PISTON>
|
||||
{
|
||||
public:
|
||||
typedef cBlockPistonHandler type;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user