Shatter_MaybeMakeGlassShatterSound

This commit is contained in:
krystalgamer 2024-05-24 16:21:33 +02:00
parent 591babd6c7
commit 877a705b39
2 changed files with 13 additions and 2 deletions

View File

@ -1 +1,7 @@
#include "shatter.h"
#include "shatter.h"
static int gGlassShatterSound;
void Shatter_MaybeMakeGlassShatterSound(void)
{
gGlassShatterSound = 0;
}

View File

@ -3,4 +3,9 @@
#ifndef SHATTER_H
#define SHATTER_H
#endif
#include "export.h"
EXPORT void Shatter_MaybeMakeGlassShatterSound(void);
#endif