コード例 #1
0
ファイル: JsonObject.cs プロジェクト: subzeromot/ColorRunV2
        public static JsonObject Create(AddJSONConents content)
        {
            JsonObject obj = Create();

            content.Invoke(obj);
            return(obj);
        }
コード例 #2
0
    public static JSONObject Create(AddJSONConents content)
    {
        JSONObject Obj = Create();

        content.Invoke(Obj);
        return(Obj);
    }
コード例 #3
0
		public JSONObject(AddJSONConents content) {
			content.Invoke(this);
		}
コード例 #4
0
ファイル: JSONObject.cs プロジェクト: NotYours180/lockstep.io
	public JSONObject (AddJSONConents content) 
	{
		content.Invoke(this);
	}
コード例 #5
0
ファイル: JSONObject.cs プロジェクト: NotYours180/lockstep.io
	public static JSONObject Create (AddJSONConents content) 
	{
		JSONObject obj = Create();
		content.Invoke(obj);
		return obj;
	}