RustDedicated/Rust.Platform.Common/IPlatformHooks.cs
2025-05-25 05:29:54 +09:30

14 lines
293 B
C#

using Rust.Platform.Common;
public interface IPlatformHooks
{
uint SteamAppId { get; }
ServerParameters? ServerParameters { get; }
void Abort();
void OnItemDefinitionsChanged();
void AuthSessionValidated(ulong userId, ulong ownerUserId, AuthResponse response, string rawResponse);
}