diff options
author | worktycho <work.tycho@gmail.com> | 2015-09-17 14:32:01 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-09-17 14:32:01 +0200 |
commit | 2598f3158f0f47c5e082851032bf4a1a3b8d88e5 (patch) | |
tree | 4b984cbc73628fac3a3e0ed3aff55a65dfaf82f7 /src/BlockEntities | |
parent | Merge pull request #2457 from cuberite/log (diff) | |
parent | Added CircleCI for stylechecking. (diff) | |
download | cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.tar cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.tar.gz cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.tar.bz2 cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.tar.lz cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.tar.xz cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.tar.zst cuberite-2598f3158f0f47c5e082851032bf4a1a3b8d88e5.zip |
Diffstat (limited to 'src/BlockEntities')
-rw-r--r-- | src/BlockEntities/CMakeLists.txt | 7 | ||||
-rw-r--r-- | src/BlockEntities/RedstonePoweredEntity.h | 21 |
2 files changed, 24 insertions, 4 deletions
diff --git a/src/BlockEntities/CMakeLists.txt b/src/BlockEntities/CMakeLists.txt index b0bfca5e4..0d1776eb5 100644 --- a/src/BlockEntities/CMakeLists.txt +++ b/src/BlockEntities/CMakeLists.txt @@ -20,7 +20,8 @@ SET (SRCS MobHeadEntity.cpp MobSpawnerEntity.cpp NoteEntity.cpp - SignEntity.cpp) + SignEntity.cpp +) SET (HDRS BeaconEntity.h @@ -39,7 +40,9 @@ SET (HDRS MobHeadEntity.h MobSpawnerEntity.h NoteEntity.h - SignEntity.h) + RedstonePoweredEntity.h + SignEntity.h +) if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") set_source_files_properties(BeaconEntity.cpp PROPERTIES COMPILE_FLAGS "-Wno-error=conversion -Wno-error=switch-enum") diff --git a/src/BlockEntities/RedstonePoweredEntity.h b/src/BlockEntities/RedstonePoweredEntity.h index eac4e35d4..06856f3ea 100644 --- a/src/BlockEntities/RedstonePoweredEntity.h +++ b/src/BlockEntities/RedstonePoweredEntity.h @@ -1,13 +1,30 @@ +// RedstonePoweredEntity.h + +// Declares the cRedstonePoweredEntity class representing a mix-in for block entities that respond to redstone + + + + + #pragma once -// Interface class representing a blockEntity that responds to redstone + + + + +/** 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 + /** 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; }; + + + + |