BadScript 2
Loading...
Searching...
No Matches
BadLayeredFileSystemLayer.cs
Go to the documentation of this file.
2using Newtonsoft.Json.Linq;
3
5{
7 {
8 public string Name { get; set; }
9 public JObject MetaData { get; set; }
10 public BadVirtualFileSystem FileSystem { get; set; }
11 public static BadLayeredFileSystemLayer Create(string name, BadVirtualFileSystem fs, JObject? metaData = null)
12 {
13 return new BadLayeredFileSystemLayer() {Name = name,FileSystem = fs, MetaData = metaData ?? new JObject() };
14 }
15 }
16}
static BadLayeredFileSystemLayer Create(string name, BadVirtualFileSystem fs, JObject? metaData=null)
Virtual File System Implementation for the BadScript Engine.
Contains the Implementation of the BadScript Virtual File System.