Пример #1
0
        public override bool Equals(System.Object object_Renamed)
        {
            bool isEqual = false;

            if (base.Equals(object_Renamed) && (object_Renamed is StartSound))
            {
                StartSound startSound = (StartSound)object_Renamed;

                if (equals(startSound.sound, this.sound) && equals(startSound.soundInfo, this.soundInfo))
                {
                    isEqual = true;
                }
            }

            return(isEqual);
        }
Пример #2
0
		public override void  startSound(StartSound tag)
		{
			tags.Add(tag);
		}
Пример #3
0
		public virtual void  startSound(StartSound tag)
		{
		}
Пример #4
0
		private Tag decodeStartSound()
		{
			StartSound t;
			t = new StartSound();
			int idref = r.readUI16();
			t.sound = (DefineSound) dict.getTag(idref);
			t.soundInfo = decodeSoundInfo();
			return t;
		}