diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-08-05 22:48:23 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-08-05 22:48:23 +0200 |
commit | 06942871dde1388284a4fe222040720de3923b03 (patch) | |
tree | fb63be31f559ccb37ef0a05fd5148edef270fcfa /src/BlockEntities/RedstonePoweredEntity.h | |
parent | Fixed unsigned long comparison to size_t (diff) | |
download | cuberite-06942871dde1388284a4fe222040720de3923b03.tar cuberite-06942871dde1388284a4fe222040720de3923b03.tar.gz cuberite-06942871dde1388284a4fe222040720de3923b03.tar.bz2 cuberite-06942871dde1388284a4fe222040720de3923b03.tar.lz cuberite-06942871dde1388284a4fe222040720de3923b03.tar.xz cuberite-06942871dde1388284a4fe222040720de3923b03.tar.zst cuberite-06942871dde1388284a4fe222040720de3923b03.zip |
Diffstat (limited to 'src/BlockEntities/RedstonePoweredEntity.h')
-rw-r--r-- | src/BlockEntities/RedstonePoweredEntity.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/BlockEntities/RedstonePoweredEntity.h b/src/BlockEntities/RedstonePoweredEntity.h new file mode 100644 index 000000000..aebba771f --- /dev/null +++ b/src/BlockEntities/RedstonePoweredEntity.h @@ -0,0 +1,9 @@ + + +// Interface class representing a blockEntity that responds to redstone +class cRedstonePoweredEntity +{ +public: +/// 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; +}; |