blob: 2b6dd86f0561288ce152e0c188b442874f747359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using Impostor.Api.Innersloth;
using Impostor.Api.Net.Messages;
namespace Impostor.Api.Net.Inner.Objects
{
public interface ITaskInfo
{
uint Id { get; }
TaskTypes Type { get; }
bool Complete { get; }
}
}
|