1
This commit is contained in:
parent
889e4106c4
commit
d3f61fb911
@ -0,0 +1,11 @@
|
|||||||
|
#include "mine_sweeper.ai.h"
|
||||||
|
|
||||||
|
MineSweeperAI::MineSweeperAI()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
MineSweeperAI::~MineSweeperAI()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "hero.ai.h"
|
||||||
|
|
||||||
|
class MineSweeperAI : public HeroAI
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
MineSweeperAI();
|
||||||
|
virtual ~MineSweeperAI() override;
|
||||||
|
|
||||||
|
};
|
@ -1,5 +1,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <a8/list.h>
|
||||||
|
|
||||||
class Creature;
|
class Creature;
|
||||||
|
|
||||||
class CreatureWeakPtrChunk
|
class CreatureWeakPtrChunk
|
||||||
|
Loading…
x
Reference in New Issue
Block a user