mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 03:25:07 -05:00
e56af6a7a3
* Redesign hooks mechanism * Use reference instead of copy
11 lines
216 B
C++
11 lines
216 B
C++
#include "SohHooks.h"
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <stdarg.h>
|
|
#include <iostream>
|
|
|
|
void ModInternal_ExecuteAudioInitHooks() {
|
|
ModInternal::ExecuteHooks<ModInternal::AudioInit>();
|
|
}
|