15 lines
260 B
C#
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; }
|
||
|
}
|
||
|
}
|
||
|
|