summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/RedstonePoweredEntity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/BlockEntities/RedstonePoweredEntity.h')
-rw-r--r--src/BlockEntities/RedstonePoweredEntity.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/BlockEntities/RedstonePoweredEntity.h b/src/BlockEntities/RedstonePoweredEntity.h
deleted file mode 100644
index 06856f3ea..000000000
--- a/src/BlockEntities/RedstonePoweredEntity.h
+++ /dev/null
@@ -1,30 +0,0 @@
-
-// RedstonePoweredEntity.h
-
-// Declares the cRedstonePoweredEntity class representing a mix-in for block entities that respond to redstone
-
-
-
-
-
-#pragma once
-
-
-
-
-
-/** Interface class representing a mix-in for block entities that respond to redstone */
-class cRedstonePoweredEntity
-{
-public:
-
- virtual ~cRedstonePoweredEntity() {}
-
- /** Sets the internal redstone power flag to "on" or "off", depending on the parameter.
- Calls Activate() if appropriate */
- virtual void SetRedstonePower(bool a_IsPowered) = 0;
-};
-
-
-
-