diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-11-01 17:36:45 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-11-01 17:36:45 +0100 |
commit | 44b2deab9769bbf9dccb821380df15b4ec5d78a6 (patch) | |
tree | 2da762cc836d54ad5d6b98c34ca672f221c757af | |
parent | Improved redstone simulator (diff) | |
download | cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.tar cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.tar.gz cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.tar.bz2 cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.tar.lz cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.tar.xz cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.tar.zst cuberite-44b2deab9769bbf9dccb821380df15b4ec5d78a6.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/Redstone/creatable.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Redstone/creatable.cpp b/tests/Redstone/creatable.cpp index 02c622788..f8e7c75ed 100644 --- a/tests/Redstone/creatable.cpp +++ b/tests/Redstone/creatable.cpp @@ -41,9 +41,9 @@ bool cChunkInterface::WriteBlockArea(cBlockArea & a_Area, int a_MinBlockX, int a return false; } -#include "Simulator/Simulator.inc" +#include "Simulator/Simulator.h" -#include "Simulator/IncrementalRedstoneSimulator.inc" +#include "Simulator/IncrementalRedstoneSimulator.h" class MockWorld; @@ -159,6 +159,7 @@ int main(int argc, char** argv) MockWorld World; - cIncrementalRedstoneSimulator<MockChunk, MockWorld, MockHandlerFetcher, MockChest> Simulator(World); + // TODO: Implement a user-friendly method of testing + // cIncrementalRedstoneSimulator<MockChunk, MockWorld, MockHandlerFetcher, MockChest> Simulator(World); return 0; } |