BITFALL/Assets/BITKit/UnityPluginsSupport/Steamwork/ISteamService.cs

31 lines
659 B
C#
Raw Normal View History

2023-08-23 01:59:40 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Steamworks;
namespace BITKit.Steamwork
{
/// <summary>
/// Steam服务接口
/// </summary>
public interface ISteamService
{
/// <summary>
/// SteamId
/// </summary>
int Id { get; }
/// <summary>
/// Steam64位Id
/// </summary>
ulong SteamId { get; }
/// <summary>
/// Steam用户名
/// </summary>
string Name { get; }
/// <summary>
/// Steam客户端是否已经初始化
/// </summary>
bool IsInitialized { get; }
}
}