BsUnixPlatformUtility.cpp 390 B

12345678910111213
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "Utility/BsPlatformUtility.h"
  4. #include <stdlib.h>
  5. namespace bs
  6. {
  7. void PlatformUtility::terminate(bool force)
  8. {
  9. exit(0);
  10. }
  11. }