mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 06:37:13 +00:00
17 lines
258 B
C++
17 lines
258 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <format>
|
|
#include <vector>
|
|
|
|
class BlockReplacements {
|
|
public:
|
|
static void staticCtor();
|
|
|
|
private:
|
|
static std::vector<uint8_t> replacements;
|
|
|
|
public:
|
|
static void replace(std::vector<uint8_t>& blocks);
|
|
}; |