5f4d3e16d2
Brought everything up to date with 0.437.0.406875 and made some improvements.
19 lines
395 B
C#
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();
|
|
}
|
|
}
|
|
}
|