flare.hh 993 B

1234567891011121314151617181920212223242526
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_FLARE_HH
  9. #define G1_FLARE_HH
  10. #include "math/vector.hh"
  11. class g1_draw_context_class;
  12. void g1_draw_flare(i4_3d_point_class world_pos, g1_draw_context_class *context,
  13. float flare_scale=1.0,
  14. int flare_type=0);
  15. void g1_draw_exhaust(i4_3d_point_class world_pos, g1_draw_context_class *context,
  16. float flare_scale=1.0,
  17. int flare_type=0,
  18. float alpha=1.0);
  19. #endif