Mirror of Svelto.ECS because we're a fan of it
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

TypeSafeDictionaryException.cs 251B

123456789101112
  1. using System;
  2. namespace Svelto.ECS
  3. {
  4. public class TypeSafeDictionaryException : Exception
  5. {
  6. public TypeSafeDictionaryException(string message, Exception exception) :
  7. base(message, exception)
  8. {
  9. }
  10. }
  11. }