14 lines
294 B
C#
Raw Normal View History

2022-07-01 12:22:31 +08:00
using System;
using System.Collections.Generic;
using System.IO;
namespace RageCoop.Core.Scripting
{
public class ResourceFile
{
public string Name { get; internal set; }
public bool IsDirectory { get; internal set; }
public Func<Stream> GetStream { get; internal set; }
}
}