Util.h 956 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //Util.h - [2020-06-22 11:41:46]
  2. #ifndef _UTIL_H_
  3. #define _UTIL_H_
  4. #include "common.h"
  5. /*
  6. 00178670 UTILCOL_CheckSpheresOverlap(TPoint3D,int,TPoint3D,int)
  7. 001786E4 UTILCOL_RayCircleTest(TPoint *,int,TPoint *,TPoint *,int)
  8. 0017875C UTILCOL_LengthenBone(TPoint3D *,TPoint3D *,int)
  9. 001787A0 UTILCOL_CapsuleCapsuleCheck(TPoint3D,TPoint3D,TPoint3D,TPoint3D,int,int,int,int)
  10. 001F5080 UtilOpenPak(int,char const*)
  11. 001F510C UtilClosePak(int)
  12. 001F5170 UtilIsPackOpen(int)
  13. */
  14. //00178670
  15. void UTILCOL_CheckSpheresOverlap(TPoint3D, int, TPoint3D, int);
  16. //001786E4
  17. int UTILCOL_RayCircleTest(TPoint *, int, TPoint *, TPoint *, int);
  18. //0017875C
  19. void UTILCOL_LengthenBone(TPoint3D *, TPoint3D *, int);
  20. //001787A0
  21. bool UTILCOL_CapsuleCapsuleCheck(TPoint3D, TPoint3D, TPoint3D, TPoint3D, int, int, int, int);
  22. //001F5080
  23. void UtilOpenPak(int a0, char const *pFileType);
  24. //001F510C
  25. void UtilClosePak(int a0);
  26. //001F5170
  27. bool UtilIsPackOpen(int a0);
  28. #endif //_UTIL_H_