Ejemplo n.º 1
0
    public void Add(ModifyShot modifier, ShotModifierType type)
    {
        shotModifiers.Add(modifier);
        shotModifierTypes.Add(type);

        GlobalState.EventService.Dispatch(new AddShotModifierEvent(type));
    }
Ejemplo n.º 2
0
 public AddShotModifierEvent(ShotModifierType type)
 {
     this.type = type;
 }
Ejemplo n.º 3
0
 public bool Contains(ShotModifierType type)
 {
     return(shotModifierTypes.Contains(type));
 }