少年修仙传客户端代码仓库
client_Hale
2018-12-08 65fb6364670f86e21adfab1ae0b42a7be8dc07f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Snxxz.UI
{
    public class DungeonGetTreasureVictoryWin : DungeonVictoryWin
    {
        protected override void Display()
        {
            base.RequireDungeonExit();
            m_ContainerPoivt.gameObject.SetActive(true);
            base.DrawGetExp();
            base.DrawPassTime();
        }
    }
}