mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 16:57:57 +03:00
17 lines
245 B
C
17 lines
245 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace sol {
|
||
|
class state;
|
||
|
}
|
||
|
|
||
|
struct GameScriptAudioTrack
|
||
|
{
|
||
|
std::string trackName;
|
||
|
bool looped;
|
||
|
|
||
|
GameScriptAudioTrack(std::string const & trackName, bool looped);
|
||
|
static void Register(sol::state* lua);
|
||
|
};
|