mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
10 lines
165 B
C#
10 lines
165 B
C#
|
using System;
|
||
|
|
||
|
namespace GAS.Runtime
|
||
|
{
|
||
|
public struct AbilityInstanceInfo
|
||
|
{
|
||
|
public AbilityAsset abilityAsset;
|
||
|
public Type abilityType;
|
||
|
}
|
||
|
}
|