summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/potion.h
blob: d80458405a7d55d2a986b759513abd459c9833f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * @file
 * @brief Potion and potion-like effects.
**/

#ifndef POTION_H
#define POTION_H

#include "externs.h"

bool potion_effect(potion_type pot_eff, int pow,
                   item_def *potion = nullptr, bool was_known = true);

#endif