mirror of
https://github.com/opensim/opensim.git
synced 2026-05-18 22:25:36 +08:00
13 lines
265 B
C#
13 lines
265 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Interfaces
|
|
{
|
|
public interface IMicrothreader
|
|
{
|
|
void Run(IEnumerable microthread);
|
|
}
|
|
}
|