Exemple #1
0
 public Dialogue(string Pharse, Person PersonType, SentencePlacement SentencePlacementType, int IndexValue)
 {
     _Phrase            = Pharse;
     _Person            = PersonType;
     _SentencePlacement = SentencePlacementType;
     _IndexValue        = IndexValue;
 }
Exemple #2
0
    public SentencePlacement _SentencePlacement; // placement in the sentence

    #endregion Fields

    #region Constructors

    public Dialogue(string Pharse, Person PersonType,SentencePlacement SentencePlacementType,int IndexValue)
    {
        _Phrase 			= Pharse;
            _Person 			= PersonType;
            _SentencePlacement 	= SentencePlacementType;
            _IndexValue     	= IndexValue;
    }
Exemple #3
0
 public Dialogue(string Pharse, Person PersonType, SentencePlacement SentencePlacementType, int IndexValue
                 , int ItemGroupNumber)
 {
     _Phrase            = Pharse;
     _Person            = PersonType;
     _SentencePlacement = SentencePlacementType;
     _IndexValue        = IndexValue;
     _ItemGroupNumber   = ItemGroupNumber;
 }
Exemple #4
0
    public Dialogue(string Pharse, Person PersonType,SentencePlacement SentencePlacementType,int IndexValue
		                 ,int ItemGroupNumber)
    {
        _Phrase 			= Pharse;
            _Person 			= PersonType;
            _SentencePlacement 	= SentencePlacementType;
            _IndexValue     	= IndexValue;
            _ItemGroupNumber 	= ItemGroupNumber;
    }