OpenHacknet/LevelState.cs
2015-10-27 23:04:18 -04:00

15 lines
No EOL
331 B
C#

using System.Collections.Generic;
namespace Hacknet
{
public struct LevelState
{
public double TimeTaken { get; set; }
public List<ObjectState> BackgroundObjects { get; set; }
public List<ObjectState> UpdatableObjects { get; set; }
public ObjectState PlayerState { get; set; }
}
}