1 Star 0 Fork 0

子弹大仙/kbengine_unity3d_plugins

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Property.cs 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
liquidx 提交于 2014-12-06 15:43 . 增加注释
namespace KBEngine
{
using UnityEngine;
using System;
/*
抽象出一个entitydef中定义的属性
该模块描述了属性的id以及数据类型等信息
*/
public class Property
{
public string name = "";
public KBEDATATYPE_BASE utype = null;
public UInt16 properUtype = 0;
public Int16 aliasID = -1;
public string defaultValStr = "";
public System.Reflection.MethodInfo setmethod = null;
public object val = null;
public Property()
{
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/BulletHermit/kbengine_unity3d_plugins.git
[email protected]:BulletHermit/kbengine_unity3d_plugins.git
BulletHermit
kbengine_unity3d_plugins
kbengine_unity3d_plugins
master

搜索帮助