mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-01 13:59:22 +00:00
12 lines
No EOL
362 B
C#
12 lines
No EOL
362 B
C#
namespace NAK.CVRLuaToolsExtension;
|
|
|
|
[Serializable]
|
|
public struct ScriptInfo
|
|
{
|
|
public string AssetId; // we will reload all scripts with this asset id
|
|
public int LuaComponentId; // the target lua component id
|
|
|
|
public string ScriptName; // the new script name
|
|
public string ScriptPath;
|
|
public string ScriptText; // the new script text
|
|
} |