Files
cryptonhym-thunder/Code/Services/GodotParticleService.cs

15 lines
309 B
C#

using GameCore.Math;
using GameCore.Services;
namespace CryptonymThunder.Code.Services;
public class GodotParticleService : IParticleService
{
public void Trigger(string particleId, Vector3 position)
{
}
public void Trigger(string particleId, Vector3 position, Vector3 normal)
{
}
}