mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-28 19:12:25 +00:00
15 lines
239 B
C++
15 lines
239 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <format>
|
|
|
|
class BlockReplacements {
|
|
public:
|
|
static void staticCtor();
|
|
|
|
private:
|
|
static std::vector<uint8_t> replacements;
|
|
|
|
public:
|
|
static void replace(std::vector<uint8_t>& blocks);
|
|
}; |