mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:23:07 +00:00
13 lines
186 B
C++
13 lines
186 B
C++
#pragma once
|
|
|
|
class BlockReplacements
|
|
{
|
|
public:
|
|
static void staticCtor();
|
|
|
|
private:
|
|
static byteArray replacements;
|
|
|
|
public:
|
|
static void replace(byteArray blocks);
|
|
}; |