mirror of
https://github.com/opensim/opensim.git
synced 2026-05-18 04:45:35 +08:00
23 lines
474 B
C#
23 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenSim.ScriptEngine.Shared;
|
|
|
|
namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
|
{
|
|
public struct LoadUnloadStructure
|
|
{
|
|
public ScriptStructure Script;
|
|
public LUType Action;
|
|
public bool PostOnRez;
|
|
public int StartParam;
|
|
|
|
public enum LUType
|
|
{
|
|
Unknown = 0,
|
|
Load = 1,
|
|
Unload = 2
|
|
}
|
|
}
|
|
}
|