9 lines
215 B
C#
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);
|
|
} |