summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Unit/Characters/Ronin/RoninBehaviour.cs
blob: 196432357115270e7cd051fe7d40d1b09ba37a09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;

        }
    }

}