コード例 #1
0
ファイル: Rewards.cs プロジェクト: Godkong/RunUO
		public RewardItem( int weight, ConstructCallback constructor ) : this( weight, constructor, 0 )
		{
		}
コード例 #2
0
ファイル: Rewards.cs プロジェクト: Godkong/RunUO
		public RewardItem( int weight, ConstructCallback constructor, int type )
		{
			m_Weight = weight;
			m_Constructor = constructor;
			m_Type = type;
		}
コード例 #3
0
 public RewardItem(int weight, ConstructCallback constructor, int type)
 {
     m_Weight      = weight;
     m_Constructor = constructor;
     m_Type        = type;
 }
コード例 #4
0
 public RewardItem(int weight, ConstructCallback constructor) : this(weight, constructor, 0)
 {
 }
コード例 #5
0
 public PersistableType(string name, ConstructCallback constructor)
 {
     m_Name        = name;
     m_Constructor = constructor;
 }
コード例 #6
0
ファイル: Rewards.cs プロジェクト: rafaelfcsouza/ModernUO
 public RewardItem(int weight, ConstructCallback constructor, int type = 0)
 {
     Weight      = weight;
     Constructor = constructor;
     Type        = type;
 }
コード例 #7
0
ファイル: PersistableType.cs プロジェクト: xrunuo/xrunuo
		public PersistableType( string name, ConstructCallback constructor )
		{
			m_Name = name;
			m_Constructor = constructor;
		}