Files
BoneSync/Facepunch.Steamworks/Structs/DlcInformation.cs
2025-02-25 12:58:41 +02:00

15 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace Facepunch.Steamworks.Data
{
public struct DlcInformation
{
public AppId AppId { get; internal set; }
public string Name { get; internal set; }
public bool Available { get; internal set; }
}
}