12 lines
187 B
C++
12 lines
187 B
C++
#ifndef __POTIONS_H__
|
|
#define __POTIONS_H__
|
|
|
|
#include "potion.h"
|
|
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
std::unique_ptr<potion> new_potion(potion_type type, const position &pos);
|
|
|
|
#endif
|