Add audio and particle services, update GamePresenter for game state management
This commit is contained in:
16
Code/Services/GodotAudioService.cs
Normal file
16
Code/Services/GodotAudioService.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using GameCore.Math;
|
||||
using GameCore.Services;
|
||||
|
||||
namespace CryptonymThunder.Code.Services;
|
||||
|
||||
public class GodotAudioService : IAudioService
|
||||
{
|
||||
public void Play(string soundId)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void PlayAtPoint(string soundId, Vector3 position)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user