コード例 #1
0
ファイル: Sign.cs プロジェクト: BackupTheBerlios/sunuo-svn
 public Sign(SignType type, SignFacing facing) : base((0xB95 + (2 * (int)type)) + (int)facing)
 {
 }
コード例 #2
0
ファイル: SubtextSign.cs プロジェクト: FreeReign/forkuo
 public SubtextSign(SignType type, SignFacing facing, string subtext)
     : base(type, facing)
 {
     this.m_Subtext = subtext;
 }
コード例 #3
0
 public SubtextSign(SignType type, SignFacing facing, string subtext)
     : base(type, facing) =>
コード例 #4
0
ファイル: LocalizedSign.cs プロジェクト: proxeeus/RunUO.T2A
 public LocalizedSign(SignType type, SignFacing facing, int labelNumber) : base(0xB95 + 2 * (int)type + (int)facing)
 {
     m_LabelNumber = labelNumber;
 }
コード例 #5
0
ファイル: LocalizedSign.cs プロジェクト: xrunuo/xrunuo
		public LocalizedSign( SignType type, SignFacing facing, int labelNumber )
			: base( ( 0xB95 + ( 2 * (int) type ) ) + (int) facing )
		{
			m_LabelNumber = labelNumber;
		}
コード例 #6
0
ファイル: Sign.cs プロジェクト: BackupTheBerlios/sunuo-svn
 public Sign( SignType type, SignFacing facing )
     : base(( 0xB95 + (2 * (int)type) ) + (int)facing)
 {
 }
コード例 #7
0
ファイル: Sign.cs プロジェクト: rafaelfcsouza/ModernUO
 public Sign(SignType type, SignFacing facing) : base(0xB95 + 2 * (int)type + (int)facing)
 {
 }
コード例 #8
0
ファイル: SubtextSign.cs プロジェクト: pallop/Servuo
 public SubtextSign(SignType type, SignFacing facing, string subtext)
     : base(type, facing)
 {
     this.m_Subtext = subtext;
 }
コード例 #9
0
 public LocalizedSign(SignType type, SignFacing facing, int labelNumber)
     : base((0xB95 + (2 * (int)type)) + (int)facing)
 {
     this.m_LabelNumber = labelNumber;
 }