mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
7 lines
109 B
C#
7 lines
109 B
C#
namespace AssetRipper.Processing;
|
|
|
|
public interface IAssetProcessor
|
|
{
|
|
void Process(GameData gameData);
|
|
}
|