mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-02 08:35:08 -04:00
2e1a0b5144
* Normalized imgui and added texture filter and fixed develop * Fixed incorrect separator title
18 lines
343 B
C++
18 lines
343 B
C++
#pragma once
|
|
|
|
enum SeqPlayers {
|
|
/* 0 */ SEQ_BGM_MAIN,
|
|
/* 1 */ SEQ_FANFARE,
|
|
/* 2 */ SEQ_SFX,
|
|
/* 3 */ SEQ_BGM_SUB,
|
|
/* 4 */ SEQ_MAX
|
|
};
|
|
|
|
namespace Game {
|
|
void InitSettings();
|
|
void LoadSettings();
|
|
void LoadPadSettings();
|
|
void SaveSettings();
|
|
void SetSeqPlayerVolume(SeqPlayers playerId, float volume);
|
|
}
|