1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-08-17 06:31:45 +02:00
Files
.config
.run
.workdir
Agent
Phantom.Agent
Phantom.Agent.Minecraft
Command
Instance
Java
Launcher
Properties
Server
DownloadProgressEventArgs.cs
MinecraftServerExecutableDownloadListener.cs
MinecraftServerExecutableDownloader.cs
MinecraftServerExecutables.cs
ServerStatusProtocol.cs
Phantom.Agent.Minecraft.csproj
Phantom.Agent.Rpc
Phantom.Agent.Services
Common
Controller
Docker
Utils
Web
.dockerignore
.gitattributes
.gitignore
AddMigration.bat
AddMigration.sh
Directory.Build.props
Directory.Build.targets
Dockerfile
LICENSE
Packages.props
PhantomPanel.sln
README.md
global.json

12 lines
329 B
C#

namespace Phantom.Agent.Minecraft.Server;
public sealed class DownloadProgressEventArgs : EventArgs {
public ulong DownloadedBytes { get; }
public ulong TotalBytes { get; }
internal DownloadProgressEventArgs(ulong downloadedBytes, ulong totalBytes) {
DownloadedBytes = downloadedBytes;
TotalBytes = totalBytes;
}
}