mirror of
https://github.com/ineedbots/cod2m.git
synced 2025-04-19 08:02:52 +00:00
Add bots module
This commit is contained in:
parent
bbc71bba1a
commit
bc91d819ea
@ -1,5 +1,6 @@
|
||||
#include "STDInclude.hpp"
|
||||
|
||||
#include "Modules/Bots.hpp"
|
||||
#include "Modules/Flags.hpp"
|
||||
#include "Modules/HelloWorld.hpp"
|
||||
#include "Modules/Logger.hpp"
|
||||
@ -37,6 +38,7 @@ namespace Components
|
||||
Loader::Register(new Flags());
|
||||
Loader::Register(new HelloWorld());
|
||||
Loader::Register(new Logger());
|
||||
Loader::Register(new Bots());
|
||||
|
||||
Loader::Pregame = false;
|
||||
}
|
||||
|
13
src/Components/Modules/Bots.cpp
Normal file
13
src/Components/Modules/Bots.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include "STDInclude.hpp"
|
||||
#include "Bots.hpp"
|
||||
|
||||
namespace Components
|
||||
{
|
||||
Bots::Bots()
|
||||
{
|
||||
}
|
||||
|
||||
Bots::~Bots()
|
||||
{
|
||||
}
|
||||
}
|
11
src/Components/Modules/Bots.hpp
Normal file
11
src/Components/Modules/Bots.hpp
Normal file
@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
namespace Components
|
||||
{
|
||||
class Bots : public Component
|
||||
{
|
||||
public:
|
||||
Bots();
|
||||
~Bots();
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user