Roblox-File-Format/Core/RobloxFile.cs
CloneTrooper1019 9cfd5b2211 Initial commit.
There's a lot of code at play here, so I haven't tested it yet.
A good chunk of the components are available though.
2019-01-25 18:39:37 -06:00

14 lines
245 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Roblox
{
public class RobloxFile
{
public List<RobloxInstance> Trunk { get; private set; }
}
}