AM Daemon ライブラリリファレンス
総合概要
諸情報
モジュール
名前空間
クラス
ファイル
ファイル一覧
ファイルメンバ
amdcommon
include
amdaemon
CreditSound.h
[詳解]
1
/// @file
2
/// @brief ビデオゲーム用のクレジット投入音列挙 CreditSound のヘッダ。
3
///
4
/// Copyright(C)SEGA
5
6
#ifndef AMDAEMON_CREDITSOUND_H
7
#define AMDAEMON_CREDITSOUND_H
8
9
#include "
amdaemon/env.h
"
10
11
namespace
amdaemon
12
{
13
/// @addtogroup g_credit
14
/// @{
15
16
/// ビデオゲーム用のクレジット投入音列挙。
17
enum class
CreditSound
18
{
19
None
= 0,
///< サウンドなし。
20
Coin
,
///< コインカウントアップ音。
21
Credit
,
///< クレジットカウントアップ音。
22
};
23
24
/// @brief @ref CreditSound 列挙値の文字列表現値を取得する。
25
/// @param[in] sound @ref CreditSound 列挙値。
26
/// @return @ref CreditSound 列挙値の文字列表現値。不正値の場合は nullptr 。
27
/// @internal ライブラリ実装メモ: enumsToString.cpp で実装。
28
const
wchar_t
*
toString
(
CreditSound
sound);
29
30
/// @}
31
}
// namespace amdaemon
32
33
#endif // AMDAEMON_CREDITSOUND_H
env.h
Daemonライブラリの環境定義を行うヘッダ。
amdaemon
AM Daemon ライブラリクラス群の基底名前空間。
Definition:
Log.h:13
amdaemon::toString
const wchar_t * toString(AimeCommand command)
AimeCommand 列挙値の文字列表現値を取得する。
amdaemon::DumpTarget::Credit
Credit クラス情報。
amdaemon::CreditSound::Coin
コインカウントアップ音。
amdaemon::CreditSound
CreditSound
ビデオゲーム用のクレジット投入音列挙。
Definition:
CreditSound.h:17
amdaemon::CreditSound::None
サウンドなし。
2018年07月31日(火) 15時54分14秒作成 - AM Daemon ライブラリリファレンス / 構成:
1.8.11