mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 02:57:08 +02:00
13 lines
358 B
C#
13 lines
358 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Robust.Packaging;
|
|
using Robust.Packaging.AssetProcessing;
|
|
|
|
namespace Robust.Server.ServerStatus;
|
|
|
|
public interface IMagicAczProvider
|
|
{
|
|
// Cancellation not currently used, future proofing can't hurt though.
|
|
Task Package(AssetPass pass, IPackageLogger logger, CancellationToken cancel);
|
|
}
|