asynchronousai's picture
Upload 33 files
1ae2e8e verified
raw
history blame contribute delete
296 Bytes
namespace RobloxCS
{
internal sealed class CompiledFile
{
public readonly string Path;
public readonly string LuaSource;
public CompiledFile(string path, string luaSource)
{
Path = path;
LuaSource = luaSource;
}
}
}