git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@60 52acb1d6-8a22-11de-b505-999d5b087335
20 lines
455 B
C#
20 lines
455 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Threading;
|
|
using SecondSuite.Plugins;
|
|
|
|
namespace SecondSuite
|
|
{
|
|
public class Global
|
|
{
|
|
public Global()
|
|
{
|
|
}
|
|
|
|
public static PluginCollection Plugins = new PluginCollection();
|
|
public static Mutex PluginsMutex = new Mutex(false, "PluginsMutex");
|
|
public static ArrayList Clients = new ArrayList();
|
|
public static Mutex ClientsMutex = new Mutex(false, "ClientsMutex");
|
|
}
|
|
}
|