Files
7d2dXG/Mods/0-CustomParticleLoader/Scripts/Core/IExplosionProperty.cs
Nathaniel Cosford e06f2bd282 Add All Mods
2025-05-29 23:33:28 +09:30

7 lines
174 B
C#

public interface IExplosionPropertyParser
{
bool ParseProperty(DynamicProperties _props, out object property);
System.Type MatchScriptType();
string Name();
}