public DestructibleThresholdReachedMessage(DestructibleComponent parent, Threshold threshold, int totalDamage, int thresholdAmount)
 {
     Parent          = parent;
     Threshold       = threshold;
     TotalDamage     = totalDamage;
     ThresholdAmount = thresholdAmount;
 }
 public DestructibleThresholdReachedMessage(DestructibleComponent parent, Threshold threshold)
 {
     Parent    = parent;
     Threshold = threshold;
 }