summaryrefslogtreecommitdiffstats
path: root/src/game/shared/splash.hh
blob: 0acfe3ba54c1f96a6d11f8b5b406665bf14fbeb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: splash.hh
// Description: Randomized text messages

#ifndef SHARED_SPLASH_HH
#define SHARED_SPLASH_HH
#pragma once

namespace splash
{
void init_client(void);
void init_server(void);
std::string_view get(void);
} // namespace splash

#endif