mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
24 lines
425 B
C#
24 lines
425 B
C#
using System;
|
|
using JNGame.Sync.System.View;
|
|
|
|
namespace Game.Input
|
|
{
|
|
/// <summary>
|
|
/// DWorldSystem 的输入类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IDWorld : JNInputJson
|
|
{
|
|
|
|
/// <summary>
|
|
/// 创建球
|
|
/// </summary>
|
|
public bool IsAdd;
|
|
|
|
/// <summary>
|
|
/// 主角创建
|
|
/// </summary>
|
|
public bool IsPlayerCreate;
|
|
|
|
}
|
|
} |