Exemplo n.º 1
0
 public void init()
 {
     s.init();
     attribute.level = cj.character.level;
     attribute.name  = cj.character.name;
     s.person_assignment(attribute, cj.character.personality);
     draw();
 }
Exemplo n.º 2
0
    public void test()
    {
        SearchTable s = new SearchTable();
        Attribute   a = new Attribute();

        s.person_assignment(a, 2);

        Debug.Log(a.hp);
        Debug.Log(a.attack);
    }