13 lines
257 B
Text
13 lines
257 B
Text
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
||
|
|
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
||
|
|
|
||
|
|
export module Base;
|
||
|
|
import std;
|
||
|
|
|
||
|
|
export namespace Demo {
|
||
|
|
class Payload {
|
||
|
|
public:
|
||
|
|
std::int32_t first = 1;
|
||
|
|
void Stamp();
|
||
|
|
};
|
||
|
|
}
|