mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-06-03 00:58:13 -04:00
18 lines
296 B
C#
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) { }
|
|
}
|
|
}
|