BITKit/Packages/Runtime~/Unity/Extensions/Steamwork/ISteamService.cs

15 lines
260 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Steamworks;
namespace BITKit.Steamwork
{
public interface ISteamService
{
int Id { get; }
ulong SteamId { get; }
string Name { get; }
}
}