AssetStudio/AssetStudio/IProgress.cs
Perfare 0a5b866a03 rename
move files
improve Sprite read
2018-11-24 23:02:05 +08:00

18 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AssetStudio
{
public interface IProgress
{
void Report(int value);
}
public sealed class DummyProgress : IProgress
{
public void Report(int value) { }
}
}