forked from github/server
fed399042d
https://bugs.eressea.de/view.php?id=2233 piracy_cmd always works on u->thisorder, does not need an argument.
21 lines
258 B
C
21 lines
258 B
C
#pragma once
|
|
|
|
#ifndef PIRACY_H
|
|
#define PIRACY_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct unit;
|
|
struct order;
|
|
struct region;
|
|
|
|
void piracy_cmd(struct unit * u);
|
|
void age_piracy(struct region *r);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|