15 lines
268 B
C#
15 lines
268 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
|
|
|
|
namespace Facepunch.Steamworks.Data
|
|
{
|
|
public struct DownloadProgress
|
|
{
|
|
public bool Active;
|
|
public ulong BytesDownloaded;
|
|
public ulong BytesTotal;
|
|
}
|
|
} |