Pixi/Pixi/Common/BlueprintProvider.cs
2020-07-24 11:05:00 -04:00

9 lines
No EOL
182 B
C#

namespace Pixi.Common
{
public interface BlueprintProvider
{
string Name { get; }
BlockJsonInfo[] Blueprint(string name, BlockJsonInfo root);
}
}