示例#1
0
文件: Unit.cs 项目: m15399/UnityTRPG
    void Start()
    {
        // Determine board pos to the best of our ability
        //
        Vector3 tpos = transform.position;

        pos = new Coord((int)tpos.x, (int)tpos.y);

        currentStats = defaultStats.Clone();
    }