mycj_demo/mycj/Assets/Game/Scripts/Application/Args/FBSpawnMonsterArgs.cs

35 lines
838 B
C#
Raw Normal View History

2024-12-02 09:37:47 +08:00
// Felix-BangFBSpawnMonsterArgs
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe出怪参数
// Createtime2018/10/12
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBSpawnMonsterArgs
{
#region
/// <summary> 怪物类型 </summary>
public int MonsterID;
#endregion
}
}