mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
15 lines
No EOL
331 B
C#
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; }
|
|
}
|
|
} |