AM Daemon ライブラリリファレンス
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
Daemonライブラリの環境定義を行うヘッダ。
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13
const wchar_t * toString(AimeCommand command)
AimeCommand 列挙値の文字列表現値を取得する。
Credit クラス情報。
コインカウントアップ音。
CreditSound
ビデオゲーム用のクレジット投入音列挙。
Definition: CreditSound.h:17
サウンドなし。