X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmain.cpp;h=a890871fb4c162dd12399ff1baa0190f5a6d7dc8;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=dc4c669caadb90d8da52837680bf030b534c3d5d;hpb=e518ac67cf94e244df16078dcbc536e6b659e758;p=l2e.git diff --git a/src/main.cpp b/src/main.cpp index dc4c669..a890871 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,7 +17,7 @@ #include "common/Script.h" #include "common/Spell.h" #include "common/Stats.h" -#include "geometry/Vector.h" +#include "math/Vector.h" #include "graphics/CharSelect.h" #include "graphics/ComplexAnimation.h" #include "graphics/Font.h" @@ -63,7 +63,7 @@ using common::GameConfig; using common::GameState; using common::Hero; using common::Spell; -using geometry::Vector; +using math::Vector; using graphics::Texture; using loader::Caster; using loader::Interpreter; @@ -234,6 +234,8 @@ int main(int argc, char **argv) { gameState.heroes[1].AddSpell(valorSpell); gameState.inventory.Add(caster.GetItem("zirconPlateItem"), 32); + gameState.inventory.Add(caster.GetItem("holyFruitItem")); + gameState.inventory.Add(caster.GetItem("darkFruitItem")); gameState.inventory.Add(caster.GetItem("antidoteItem"), 9); gameState.inventory.Add(caster.GetItem("powerRingItem")); gameState.inventory.Add(caster.GetItem("magicJarItem"), 4);