mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-10 04:49:28 -05:00
mv UniJSONPRofiling project #100
This commit is contained in:
16
UniJSONProfiling/Program.cs
Normal file
16
UniJSONProfiling/Program.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
#if UNIJSON_PROFILING
|
||||
namespace UniJSONPRofiling
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var json = File.ReadAllText(args[0], Encoding.UTF8);
|
||||
var parsed = UniJSON.JsonParser.Parse(json);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user