File size: 296 Bytes
1ae2e8e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace RobloxCS
{
    internal sealed class CompiledFile
    {
        public readonly string Path;
        public readonly string LuaSource;

        public CompiledFile(string path, string luaSource)
        {
            Path = path;
            LuaSource = luaSource;
        }
    }
}