/ContentSystem/Rendering/Helpers/IEffectModifier.cs
C# | 14 lines | 7 code | 1 blank | 6 comment | 0 complexity | cc79897897bca62377eb4f60e164a54e MD5 | raw file
1using Delta.Utilities; 2 3namespace Delta.ContentSystem.Rendering.Helpers 4{ 5 /// <summary> 6 /// Interface for the effect modifiers, which all implement ISaveLoadBinary. 7 /// We currently use the interface because the Modifier itself shouldn't 8 /// be in the here (in Delta.ContentSystem) and especially not the Particle 9 /// struct which is needed in the Base Modifier class. 10 /// </summary> 11 public interface IEffectModifier : ISaveLoadBinary 12 { 13 } 14}