A_Draw_Box method

int A_Draw_Box(
  1. int mode,
  2. int x,
  3. int y,
  4. int width,
  5. int height,
  6. int top,
  7. int side,
)

Implementation

int A_Draw_Box(
  int mode,
  int x,
  int y,
  int width,
  int height,
  int top,
  int side,
) {
  return _A_Draw_Box(
    mode,
    x,
    y,
    width,
    height,
    top,
    side,
  );
}