Exemplo n.º 1
0
		public TlkEntry(int id = -1, string text = "", int position = 0, TlkEntryGender gender = TlkEntryGender.Male)
		{
			Gender = gender;
			Id = id;
			Position = position;
			Text = text;
		}
Exemplo n.º 2
0
 public TlkEntry(int id = -1, string value = null, int position = 0, TlkEntryGender gender = TlkEntryGender.Male)
 {
     Gender   = gender;
     Id       = id;
     Position = position;
     Tag      = null;
     Value    = value ?? EmptyText;
 }