i am doing this mod but its asking to add
class CfgSounds
{
sounds[] = {};
class NoSound
{
name = "NoSound";
sound[] = {"", 0, 1};
titles[] = {};
};
#include "Train\sounds.hpp"
};
But i have this
class CfgSounds
{
sounds[] =
{
fox
};
class fox
{
name="fox";
sound[]={fox.ogg,0.9,1};
titles[] = {};
};
};
How do i combine the to

