summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Unit/Characters/Ronin/RoninBehaviour.cs
blob: 04b7e9f7e5236421bd5daa6328d962902876b396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Mono.Cecil.Cil;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using WK;

public class RoninBehaviour : CharacterBehaviour
{

    public override void OnCreate()
    {
        base.OnCreate();

        if (info.stats["max_health"] != null)
        {
            int health = info.stats["max_health"].intValue;
        }
    }

}