1 Star 0 Fork 0

starlove/kbengine_unity3d_plugins

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Method.cs 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
liquidx 提交于 2014-12-06 15:43 . 增加注释
namespace KBEngine
{
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
/*
实体定义的方法模块
抽象出一个def文件中定义的方法,改模块类提供了该方法的相关描述信息
例如:方法的参数、方法的id、方法对应脚本的handler
*/
public class Method
{
public string name = "";
public UInt16 methodUtype = 0;
public Int16 aliasID = -1;
public List<KBEDATATYPE_BASE> args = new List<KBEDATATYPE_BASE>();
public System.Reflection.MethodInfo handler = null;
public Method()
{
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/starlove/kbengine_unity3d_plugins.git
git@gitee.com:starlove/kbengine_unity3d_plugins.git
starlove
kbengine_unity3d_plugins
kbengine_unity3d_plugins
master

搜索帮助