示例#1
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "Universe.GridServer.ini",
                              new MinimalSimulationBase("Universe.GridServer ",
                                                        new List <Type>
     {
         typeof(IRegionData),
         typeof(IAgentInfoConnector),
         typeof(IUserAccountData),
         typeof(IAssetDataPlugin)
     },
                                                        new List <Type>
     {
         typeof(IGridService),
         typeof(IAssetService),
         typeof(IAgentInfoService),
         typeof(IConfigurationService),
         typeof(ISyncMessagePosterService),
         typeof(ISyncMessageRecievedService),
         typeof(IExternalCapsHandler),
         typeof(IUserAccountService),
         typeof(IGridServerInfoService),
         typeof(IMapService),
         typeof(IJ2KDecoder)
     }));
 }
示例#2
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "WhiteCore.InventoryServer.ini",
                              new MinimalSimulationBase("WhiteCore.InventoryServer ",
                                                        new List <Type>
     {
         typeof(IInventoryData),
         typeof(IUserAccountData),
         typeof(IAssetDataPlugin),
         typeof(ISimpleCurrencyConnector),
         typeof(IAgentInfoConnector)
     },
                                                        new List <Type>
     {
         typeof(IInventoryService),
         typeof(ILibraryService),
         typeof(IUserAccountService),
         typeof(IAssetService),
         typeof(IMoneyModule),
         typeof(ISyncMessagePosterService),
         typeof(ISyncMessageRecievedService),
         typeof(IAgentInfoService),
         typeof(IExternalCapsHandler),
         typeof(IConfigurationService),
         typeof(IGridServerInfoService),
         typeof(IJ2KDecoder)
     }));
 }
示例#3
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "Aurora.AvatarServer.ini",
                              new MinimalSimulationBase("Aurora.AvatarServer ",
                                                        new List <Type>
     {
         typeof(IAvatarData),
         typeof(IInventoryData),
         typeof(IUserAccountData),
         typeof(IAssetDataPlugin)
     },
                                                        new List <Type>
     {
         typeof(IAvatarService),
         typeof(IInventoryService),
         typeof(IUserAccountService),
         typeof(IAssetService),
         typeof(ISyncMessagePosterService),
         typeof(ISyncMessageRecievedService),
         typeof(IExternalCapsHandler),
         typeof(IConfigurationService),
         typeof(IGridServerInfoService),
         typeof(IAgentAppearanceService),
         typeof(IJ2KDecoder)
     }));
 }
示例#4
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "WhiteCore.AssetServer.ini",
                              new MinimalSimulationBase("WhiteCore.AssetServer ",
                                                        new List <Type> {
         typeof(IAssetDataPlugin)
     },
                                                        new List <Type>
     {
         typeof(IAssetService),
         typeof(ISyncMessagePosterService),
         typeof(ISyncMessageRecievedService),
         typeof(IExternalCapsHandler),
         typeof(IConfigurationService),
         typeof(IGridServerInfoService),
         typeof(IJ2KDecoder)
     }));
 }
示例#5
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "", new SimulationBase());
 }
示例#6
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "WhiteCore.Server.ini", new WhiteCoreBase());
 }
示例#7
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "Universe.Server.ini", new UniverseBase());
 }
示例#8
0
 public static void Main(string[] args)
 {
     BaseApplication.BaseMain(args, "AuroraServer.ini", new AuroraBase());
 }