mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
10 lines
180 B
C#
10 lines
180 B
C#
using ZoneCodeGenerator.Persistence;
|
|
|
|
namespace ZoneCodeGenerator.Parsing
|
|
{
|
|
interface IDataPostProcessor
|
|
{
|
|
bool PostProcess(IDataRepository repository);
|
|
}
|
|
}
|