9 lines
217 B
C++
9 lines
217 B
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
namespace MassShoot {
|
|
namespace StoryTools {
|
|
void LaunchTitle(std::string title, std::string subtitle = "");
|
|
void DisplayTitle(std::string title, std::string subtitle = "");
|
|
}
|
|
} |