Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TelemetryDiagnosticParams.cs 355B

12345678910111213
  1. namespace UnityEngine.Purchasing.Telemetry
  2. {
  3. struct TelemetryDiagnosticParams
  4. {
  5. internal string name;
  6. internal string exception;
  7. internal TelemetryDiagnosticParams(string diagnosticName, string diagnosticException)
  8. {
  9. name = diagnosticName;
  10. exception = diagnosticException;
  11. }
  12. }
  13. }