mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
17 lines
342 B
C#
17 lines
342 B
C#
using GAS.Runtime;
|
|
using JNGame.Sync.Entity;
|
|
|
|
namespace GASSamples.Scripts
|
|
{
|
|
public class AbilitySystemSamplesComponent : AbilitySystemComponent
|
|
{
|
|
|
|
public JNEntity Entity { get; protected set; }
|
|
|
|
public AbilitySystemSamplesComponent(JNEntity entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
|
|
}
|
|
} |