mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
29 lines
553 B
C#
29 lines
553 B
C#
using System.Threading.Tasks;
|
|
using GAS.Runtime;
|
|
using JNGame.Network;
|
|
using UnityEngine;
|
|
|
|
namespace GASSamples.Scripts
|
|
{
|
|
public class JNGResService : JNServerBase
|
|
{
|
|
|
|
public GameObject World;
|
|
|
|
//Box
|
|
public GameObject Box;
|
|
|
|
//Preset
|
|
public AbilitySystemComponentPreset Preset;
|
|
|
|
//GE_JisolDemo1
|
|
public IGameplayEffectData GE_JisolDemo1;
|
|
|
|
public override Task OnInit()
|
|
{
|
|
|
|
return base.OnInit();
|
|
}
|
|
|
|
}
|
|
} |