Files
brick-framework/GameCore/Services/IParticleService.cs

9 lines
215 B
C#

using GameCore.Math;
namespace GameCore.Services;
public interface IParticleService
{
void Trigger(string particleId, Vector3 position);
void Trigger(string particleId, Vector3 position, Vector3 normal);
}