Files
LuaCsForBarotraumaEP/Libraries/Facepunch.Steamworks/Structs/DownloadProgress.cs
2020-03-04 13:04:10 +01:00

15 lines
258 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace Steamworks.Data
{
public struct DownloadProgress
{
public bool Active;
public ulong BytesDownloaded;
public ulong BytesTotal;
}
}