You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
615 B
20 lines
615 B
using UnityEngine;
|
|
using System.Collections;
|
|
namespace XLua
|
|
{
|
|
public class TemplateRef : ScriptableObject
|
|
{
|
|
public TextAsset LuaClassWrap;
|
|
public TextAsset LuaClassWrapGCM;
|
|
public TextAsset LuaDelegateBridge;
|
|
public TextAsset LuaDelegateWrap;
|
|
public TextAsset LuaEnumWrap;
|
|
public TextAsset LuaEnumWrapGCM;
|
|
public TextAsset LuaInterfaceBridge;
|
|
public TextAsset LuaRegister;
|
|
public TextAsset LuaRegisterGCM;
|
|
public TextAsset LuaWrapPusher;
|
|
public TextAsset PackUnpack;
|
|
public TextAsset TemplateCommon;
|
|
}
|
|
}
|
|
|