Roblox-File-Format/LibTest/Program.cs
CloneTrooper1019 5f4d3e16d2 Bringing up to date.
Brought everything up to date with 0.437.0.406875 and made some improvements.
2020-06-21 20:02:36 -05:00

19 lines
395 B
C#

using System;
using System.Diagnostics;
namespace RobloxFiles
{
internal static class Program
{
[STAThread]
static void Main(string[] args)
{
RobloxFile bin = RobloxFile.Open(@"LibTest\Binary.rbxl");
Debugger.Break();
RobloxFile xml = RobloxFile.Open(@"LibTest\Xml.rbxlx");
Debugger.Break();
}
}
}