summaryrefslogtreecommitdiffstats
path: root/stone_soup/crawl-ref/source/cloud.h
blob: e11535ca8c7e7eb5116b0ad8dcb990f346297aa7 (plain) (blame)
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