Example #1
0
 public EventAction(BabyShape template, List <Texture2D> texturePool, List <SoundEffect> soundPool, List <Color> colourPool)
 {
     this.Template    = template;
     this.TexturePool = texturePool;
     this.SoundPool   = soundPool;
     this.ColourPool  = colourPool;
 }
Example #2
0
 public ShapeAndSoundTuple(BabyShape shape, SoundEffect sound)
 {
     this.Shape = shape;
     this.Sound = sound;
 }
Example #3
0
 public InteractionEventArgs(BabyShape shape)
 {
     this.Shape = shape;
 }