#include <iostream>#include <cassert>#include <cmath>#include <sstream>#include "cronous-env.hh"#include "actions.hh"#include "connection.hh"#include "packet_handler.hh"#include "info-factory.hh"#include "map.hh"#include "rxtimer.hh"#include "logfile.hh"#include "tasks.hh"#include "objects.hh"#include "gui.hh"#include "random.hh"cronous-env.ccのインクルード依存関係図

ネームスペース | |
| namespace | environment |
マクロ定義 | |
| #define | SQUARE(a) ((a) * (a)) |
| #define | TRY_HP_ITEM(TriedHealingItem) |
| #define | TRY_MP_ITEM(TriedHealingItem) |
|
|
|
|
|
値: if (TriedHealingItem::get_instance().get_hp_healing() > min_value\
&& TriedHealingItem::get_instance().get_hp_healing_cost() < cost)\
{\
res = &TriedHealingItem::get_instance();\
cost = res->get_hp_healing_cost();\
}
|
|
|
値: if (TriedHealingItem::get_instance().get_mp_healing() > min_value\
&& TriedHealingItem::get_instance().get_mp_healing_cost() < cost)\
{\
res = &TriedHealingItem::get_instance();\
cost = res->get_mp_healing_cost();\
}
|
1.4.2-20050421