forked from github/server
added files for new module "flyingship"
This commit is contained in:
parent
2f02c27659
commit
3fa4c18e87
|
@ -117,6 +117,7 @@ set (ERESSEA_SRC
|
||||||
travelthru.c
|
travelthru.c
|
||||||
monsters.c
|
monsters.c
|
||||||
wormhole.c
|
wormhole.c
|
||||||
|
flyingship.c
|
||||||
${SPELLS_SRC}
|
${SPELLS_SRC}
|
||||||
${RACES_SRC}
|
${RACES_SRC}
|
||||||
${ITEMS_SRC}
|
${ITEMS_SRC}
|
||||||
|
@ -208,6 +209,7 @@ set(TESTS_SRC
|
||||||
spy.test.c
|
spy.test.c
|
||||||
study.test.c
|
study.test.c
|
||||||
upkeep.test.c
|
upkeep.test.c
|
||||||
|
flyingship.test.c
|
||||||
spells/magicresistance.test.c
|
spells/magicresistance.test.c
|
||||||
${ATTRIBUTES_TESTS}
|
${ATTRIBUTES_TESTS}
|
||||||
${UTIL_TESTS}
|
${UTIL_TESTS}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
#include <platform.h>
|
||||||
|
#include <kernel/config.h>
|
||||||
|
#include "flyingship.h"
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef FLYINGSHIP_H
|
||||||
|
#define FLYINGSHIP_H
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include <platform.h>
|
||||||
|
#include "flyingship.h"
|
||||||
|
|
||||||
|
#include <CuTest.h>
|
||||||
|
#include <tests.h>
|
||||||
|
#include <assert.h>
|
Loading…
Reference in New Issue