Assert.as 176 B

123456789
  1. void Assert(bool condition)
  2. {
  3. if (!condition)
  4. {
  5. PrintCallStack();
  6. ErrorDialog("Assert", "Call stack is printed to log");
  7. engine.Exit();
  8. }
  9. }