Ejemplo n.º 1
0
 public Sign(SignType type, SignFacing facing) : base((0xB95 + (2 * (int)type)) + (int)facing)
 {
 }
Ejemplo n.º 2
0
 public SubtextSign(SignType type, SignFacing facing, string subtext)
     : base(type, facing)
 {
     this.m_Subtext = subtext;
 }
Ejemplo n.º 3
0
 public SubtextSign(SignType type, SignFacing facing, string subtext)
     : base(type, facing) =>
Ejemplo n.º 4
0
 public LocalizedSign(SignType type, SignFacing facing, int labelNumber) : base(0xB95 + 2 * (int)type + (int)facing)
 {
     m_LabelNumber = labelNumber;
 }
Ejemplo n.º 5
0
		public LocalizedSign( SignType type, SignFacing facing, int labelNumber )
			: base( ( 0xB95 + ( 2 * (int) type ) ) + (int) facing )
		{
			m_LabelNumber = labelNumber;
		}
Ejemplo n.º 6
0
 public Sign( SignType type, SignFacing facing )
     : base(( 0xB95 + (2 * (int)type) ) + (int)facing)
 {
 }
Ejemplo n.º 7
0
 public Sign(SignType type, SignFacing facing) : base(0xB95 + 2 * (int)type + (int)facing)
 {
 }
Ejemplo n.º 8
0
 public SubtextSign(SignType type, SignFacing facing, string subtext)
     : base(type, facing)
 {
     this.m_Subtext = subtext;
 }
Ejemplo n.º 9
0
 public LocalizedSign(SignType type, SignFacing facing, int labelNumber)
     : base((0xB95 + (2 * (int)type)) + (int)facing)
 {
     this.m_LabelNumber = labelNumber;
 }