fix order of includes + changelog

This commit is contained in:
Sebastian Fieber 2025-01-23 21:03:04 +01:00
parent eb5149ee0e
commit 22e758a8df
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,8 @@
0.50.0
------
Feature #8320: Add access mwscript source text to lua api
0.49.0
------

View file

@ -1,12 +1,12 @@
#include "coremwscriptbindings.hpp"
#include "context.hpp"
#include "apps/openmw/mwworld/esmstore.hpp"
#include <apps/openmw/mwlua/recordstore.hpp>
#include <components/esm3/loadscpt.hpp>
#include "../mwworld/esmstore.hpp"
#include "context.hpp"
#include "recordstore.hpp"
namespace MWLua
{
sol::table initCoreMwScriptBindings(const Context& context)