File: cloud.h

package info (click to toggle)
crawl 1%3A4.0.0beta23-2woody1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,264 kB
  • ctags: 5,033
  • sloc: cpp: 100,977; perl: 233; makefile: 63; sh: 11
file content (22 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  File:       cloud.h
 *  Summary:    Functions related to clouds.
 *  Written by: Brent Ross 
 *
 *  Change History (most recent first):
 *
 *     <1>    Oct 1/2001      BWR             Created
 */


#ifndef CLOUD_H
#define CLOUD_H

#include "externs.h"

void delete_cloud( int cloud );
void move_cloud( int cloud, int new_x, int new_y );

void place_cloud(unsigned char cl_type, unsigned char ctarget_x, unsigned char ctarget_y, unsigned char cl_range);

#endif