2019-02-01 17:19:20 +00:00
|
|
|
|
#if DEBUG
|
|
|
|
|
using System.Diagnostics;
|
2019-01-29 09:50:55 +00:00
|
|
|
|
|
2019-02-01 17:19:20 +00:00
|
|
|
|
namespace RobloxFiles
|
2019-01-29 09:50:55 +00:00
|
|
|
|
{
|
|
|
|
|
// This is a placeholder.
|
|
|
|
|
internal class UnitTest
|
|
|
|
|
{
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
if (args.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
RobloxFile file = new RobloxFile(args[0]);
|
|
|
|
|
Debugger.Break();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-02-01 17:19:20 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|