Add UniJSON35 solution. Remove UniJSONPRofiling

This commit is contained in:
ousttrue
2019-01-27 17:19:03 +09:00
parent caed13110d
commit ee14db0a0e
13 changed files with 143 additions and 64 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UnityEngine
{
[Serializable]
public struct Vector3
{
public float x;
public float y;
public float z;
}
}