* Interpolation Class * noise folder with NoiseParams, NoiseSampler, and NoiseSample classes * MapGenJobs are in a seperate file * Rewrite of MapGen class.
21 lines
431 B
C++
21 lines
431 B
C++
#pragma clang diagnostic push
|
|
#pragma ide diagnostic ignored "OCUnusedMacroInspection"
|
|
|
|
//
|
|
// Created by aurailus on 31/01/19.
|
|
//
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("Sanity Check", "[core]") {
|
|
REQUIRE(1 + 1 == 2);
|
|
}
|
|
|
|
#include "tests/BlockChunk.cpp"
|
|
#include "tests/NetHandler.cpp"
|
|
#include "tests/Serializer.cpp"
|
|
#include "tests/Packet.cpp"
|
|
#include "tests/PerlinNoise.cpp"
|
|
|
|
#pragma clang diagnostic pop |