aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs
blob: c1824452cbb9c8d650d6cea7f8154061dc283ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Text;
using Nini.Config;
using OpenSim.Region.Framework.Interfaces;
using OpenSim.Region.Framework.Scenes;

namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView
{
    class IRCStackModule : IRegionModule 
    {
        #region Implementation of IRegionModule

        public void Initialise(Scene scene, IConfigSource source)
        {
            throw new System.NotImplementedException();
        }

        public void PostInitialise()
        {
            throw new System.NotImplementedException();
        }

        public void Close()
        {
            throw new System.NotImplementedException();
        }

        public string Name
        {
            get { throw new System.NotImplementedException(); }
        }

        public bool IsSharedModule
        {
            get { throw new System.NotImplementedException(); }
        }

        #endregion
    }
}