2014-08-10 11:10:21 -05:00
|
|
|
|
namespace Ficdown.Parser.Model.Player
|
2014-07-27 00:43:32 -05:00
|
|
|
|
{
|
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
|
|
internal class State
|
|
|
|
|
{
|
|
|
|
|
public BitArray PlayerState { get; set; }
|
|
|
|
|
public BitArray ScenesSeen { get; set; }
|
|
|
|
|
public BitArray ActionsToShow { get; set; }
|
2014-08-10 15:25:20 -05:00
|
|
|
|
public BitArray ActionFirstToggles { get; set; }
|
2014-07-27 00:43:32 -05:00
|
|
|
|
}
|
|
|
|
|
}
|