summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Unit/Characters/CharacterMetadata.cs
blob: c33e9fcd435917911200106a73fd87068dbca2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace WK.Data
{

    /// <summary>
    /// ½ÇÉ«json
    /// </summary>
    public class CharacterMetadata
    {
        public string uid;

        public string name_key;

        public string stats;

        public string behaviour;

        public string builder;

        public string level_stats;

        public string prefab;

        public Dictionary<string, string> extra_data;
    }

}