parin/example/basic.d
2024-03-10 21:06:50 +02:00

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.hello;
public import popka.example.dialogue;
void runEveryExample() {
runHelloExample();
runCoinsExample();
runCameraExample();
runDialogueExample();
}
unittest {}