9cfd5b2211
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.
14 lines
245 B
C#
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; }
|
|
}
|
|
}
|