mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
43 lines
979 B
C#
43 lines
979 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AppGame;
|
|
using DotRecast.Core.Collections;
|
|
using Entitas;
|
|
using Game.JNGFrame.Logic.Entity;
|
|
using Game.JNGFrame.Logic.Entity.Contexts;
|
|
using Game.Logic.Entity.Nodes;
|
|
using JNGame.Math;
|
|
using JNGame.Sync.State.Tile.Entity;
|
|
using JNGame.Sync.System;
|
|
using JNGame.Sync.System.Data;
|
|
using Newtonsoft.Json;
|
|
using UnityEngine;
|
|
|
|
namespace Game.JNGState.Logic.Data
|
|
{
|
|
|
|
[Serializable]
|
|
public class EDNodeValue : GDataValue
|
|
{
|
|
|
|
}
|
|
|
|
public class EDNodeData : GDataBase<EDNodeData,EDNodeValue,EDNode>
|
|
{
|
|
|
|
}
|
|
public class EDNodeDataSystem : GDataBaseSystem<EDNodeData,EDNodeValue,EDNode>
|
|
{
|
|
|
|
public EDNodeDataSystem(SStateDataEnum type) : base(type)
|
|
{
|
|
}
|
|
|
|
public override JNTileContext<EDNode> NodeContext => Contexts.GetContext<EDNodeContext>();
|
|
|
|
public override int NetID => (int)NetDataEnum.EDNodeData;
|
|
|
|
}
|
|
|
|
} |