15 lines
253 B
C#
15 lines
253 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
|
|
|
|
namespace Facepunch.Steamworks.Data
|
|
{
|
|
public struct FileDetails
|
|
{
|
|
public ulong SizeInBytes;
|
|
public string Sha1;
|
|
public uint Flags;
|
|
}
|
|
} |