BizHawk/BizHawk.Client.Common/movie/tasproj/TasMovieRecord.cs

18 lines
319 B
C#

using System.Collections.Generic;
using System.Linq;
namespace BizHawk.Client.Common
{
public class TasMovieRecord
{
public byte[] State { get; set; }
public bool? Lagged { get; set; }
public string LogEntry { get; set; }
public bool HasState
{
get { return State.Any(); }
}
}
}