Added comments to module example

This commit is contained in:
antopilo
2025-02-01 13:22:15 -05:00
parent 17f96f5af2
commit f3b738758d
4 changed files with 7 additions and 5 deletions

View File

@@ -6,7 +6,6 @@
#include <mutex>
#include <thread>
namespace SoLoud
{
class Soloud;

View File

@@ -11,7 +11,5 @@ namespace Nuake
public:
AudioSource() = default;
~AudioSource() = default;
};
}

View File

@@ -1,9 +1,8 @@
#include "AudioModule.h"
#include "AudioSceneSystem.h"
#include "Nuake/Scene/SceneSystems.h"
#include "AudioSceneSystem.h"
void AudioModule_Startup()
{
using namespace Nuake;

View File

@@ -4,6 +4,12 @@ void ExampleModule_Startup()
{
// This is where you would initialize your module
// This function is called when the engine starts up
// You can register custom Scene Systems here
// Example: See Audio Module for reference
// You can register custom asset bakers to support custom formats
// Example: See Assimp Module for reference
}
void ExampleModule_Shutdown()