mirror of
https://github.com/opensim/opensim.git
synced 2026-07-09 22:45:42 +08:00
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
12 lines
217 B
C#
12 lines
217 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Framework
|
|
{
|
|
public abstract class ConfigBase
|
|
{
|
|
protected ConfigurationMember m_configMember;
|
|
}
|
|
}
|