2023-06-08 14:09:50 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using Steamworks;
|
|
|
|
namespace BITKit.Steamwork
|
|
|
|
{
|
|
|
|
public interface ISteamService
|
|
|
|
{
|
2023-06-17 16:30:53 +08:00
|
|
|
int Id { get; }
|
|
|
|
ulong SteamId { get; }
|
|
|
|
string Name { get; }
|
2023-06-08 14:09:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|