mirror of
https://github.com/Kapendev/parin.git
synced 2025-04-27 05:29:53 +03:00
21 lines
485 B
D
21 lines
485 B
D
// Copyright 2024 Alexandros F. G. Kapretsos
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/// The basic module acts as a central hub,
|
|
/// bundling together numerous specialized modules.
|
|
|
|
module popka.example.basic;
|
|
|
|
public import popka.example.camera;
|
|
public import popka.example.coins;
|
|
public import popka.example.dialogue;
|
|
public import popka.example.hello;
|
|
|
|
void runEveryExample() {
|
|
runHelloExample();
|
|
runCoinsExample();
|
|
runCameraExample();
|
|
runDialogueExample();
|
|
}
|
|
|
|
unittest {}
|