BadScript 2
Loading...
Searching...
No Matches
BadVirtualFileStream.cs
Go to the documentation of this file.
2
6internal class BadVirtualFileStream : MemoryStream
7{
11 public event Action? OnDispose;
12
13 protected override void Dispose(bool disposing)
14 {
15 base.Dispose(disposing);
16 OnDispose?.Invoke();
17 }
18}
Implements a special memory stream that can be used to read and write to a virtual file.
Contains the Implementation of the BadScript Virtual File System.