source: abuse/trunk/src/intsect.hpp @ 124

Last change on this file since 124 was 124, checked in by Sam Hocevar, 15 years ago
  • Get rid of ugly tabs and trailing spaces everywhere.
File size: 476 bytes
Line 
1/*
2 *  Abuse - dark 2D side-scrolling platform game
3 *  Copyright (c) 1995 Crack dot Com
4 *
5 *  This software was released into the Public Domain. As with most public
6 *  domain software, no warranty is made or implied by Crack dot Com or
7 *  Jonathan Clark.
8 */
9
10#ifndef __INTSECT_HPP_
11#define __INTSECT_HPP_
12
13int setback_intersect(int32_t x1, int32_t y1, int32_t &x2, int32_t &y2,
14              int32_t xp1, int32_t yp1, int32_t xp2, int32_t yp2, int32_t inside);
15
16#endif
17
18
Note: See TracBrowser for help on using the repository browser.