This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.WinForms/VirtualEnvironments.cs
Michael 1661f9a5bd hacking work
Me: [squeaky] IT'S WORKING!!
Phil: Michael... You just creeped me out...
2017-06-23 20:20:38 -04:00

43 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.WinForms
{
public static class VirtualEnvironments
{
private static List<ShiftOSEnvironment> _environments = new List<ShiftOSEnvironment>();
public static void Create(string sysname, List<ShiftOS.Objects.ClientSave> users, ulong cp, ShiftOS.Objects.ShiftFS.Directory fs)
{
var env = new ShiftOSEnvironment
{
SystemName = sysname,
Users = users,
Codepoints = cp,
Filesystem = fs
};
_environments.Add(env);
}
public static void Clear()
{
_environments.Clear();
}
public static ShiftOSEnvironment Get(string sysname)
{
return _environments.FirstOrDefault(x => x.SystemName == sysname);
}
}
public class ShiftOSEnvironment
{
public string SystemName { get; set; }
public ulong Codepoints { get; set; }
public ShiftOS.Objects.ShiftFS.Directory Filesystem { get; set; }
public List<ShiftOS.Objects.ClientSave> Users { get; set; }
}
}