18 lines
365 B
C#
18 lines
365 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(1327)]
|
|
public struct RemoteStorageSetUserPublishedFileActionResult_t
|
|
{
|
|
public const int k_iCallback = 1327;
|
|
|
|
public EResult m_eResult;
|
|
|
|
public PublishedFileId_t m_nPublishedFileId;
|
|
|
|
public EWorkshopFileAction m_eAction;
|
|
}
|
|
}
|