work in progress, can be branched/merged
This commit is contained in:
14
src/enemies.h
Normal file
14
src/enemies.h
Normal file
@ -0,0 +1,14 @@
|
||||
#ifndef __ENEMIES_H__
|
||||
#define __ENEMIES_H__
|
||||
|
||||
#include <memory>
|
||||
#include "characters.h"
|
||||
#include "races.h"
|
||||
|
||||
void new_enemy(RNG *rng, std::unique_ptr<character> &pch, const position &pos,
|
||||
bool extras);
|
||||
|
||||
void new_dragon(RNG *rng, std::unique_ptr<character> &pch, const position &pos,
|
||||
const position &fallback);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user