mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-25 19:04:43 +00:00
28 lines
817 B
C#
28 lines
817 B
C#
///////////////////////////////////
|
|
//// This is a generated file. ////
|
|
//// Do not modify it. ////
|
|
///////////////////////////////////
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GAS.Runtime
|
|
{
|
|
public static class GAbilityLib
|
|
{
|
|
public struct AbilityInfo
|
|
{
|
|
public string Name;
|
|
public string AssetPath;
|
|
public Type AbilityClassType;
|
|
}
|
|
|
|
public static AbilityInfo JisolDemo1 = new AbilityInfo { Name = "JisolDemo1", AssetPath = "Assets/Demo/GAS/Config/GameplayAbilityLib/JisolDemo1.asset",AbilityClassType = typeof(GAS.Runtime.TimelineAbility) };
|
|
|
|
|
|
public static Dictionary<string, AbilityInfo> AbilityMap = new Dictionary<string, AbilityInfo>
|
|
{
|
|
["JisolDemo1"] = JisolDemo1,
|
|
};
|
|
}
|
|
} |