25 lines
436 B
C#
25 lines
436 B
C#
|
using Axibug;
|
|||
|
using Axibug.Runtime;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Game
|
|||
|
{
|
|||
|
public abstract class MainRole : RoleBase
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <20><>ʼ<EFBFBD><CABC>
|
|||
|
/// </summary>
|
|||
|
/// <param name="data"></param>
|
|||
|
public void Init(S_ROLE_SELF data)
|
|||
|
{
|
|||
|
base.Init(data);
|
|||
|
}
|
|||
|
|
|||
|
public override void Release()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|