EE-modders / EE-DLL-Template

Simple template of a modding Empire Earth DLL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Visitor count Stars Forks Version License

🔨 Empire Earth DLL Template

Empire Earth modding DLL, but without the init hell :>
By EnergyCube for the Empire Earth Community.

🧾 Where do I start ?

The files of the project should not be modified except Project.h/Project.cpp, except that feel free to create as much things as you want !
Now, that said, simply go in Project.cpp and start the fun !

void Project::onStart()
{
    printCredit();
    Logger::showMessage("onStart :D");
}

void Project::onStop()
{
    Logger::showMessage("onStop :D");
}

📖 License

GNU General Public License v3.0

About

Simple template of a modding Empire Earth DLL

License:GNU General Public License v3.0


Languages

Language:C++ 92.7%Language:C 7.3%