19 lines
356 B
ActionScript
19 lines
356 B
ActionScript
package com.comfig
|
|
{
|
|
public class DataConfig
|
|
{
|
|
|
|
public static const STATUS_OUT:int = 1;
|
|
|
|
public static const STATUS_IN:int = 2;
|
|
|
|
public static const m_dutyArr:Array = ["","盟主","副盟主","长老","成员"];
|
|
|
|
public function DataConfig()
|
|
{
|
|
super();
|
|
}
|
|
}
|
|
}
|
|
|