23 lines
991 B
C++
23 lines
991 B
C++
/******************************************************************************/
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/29 20:36:23 by vvaas #+# #+# */
|
|
/* Updated: 2024/01/30 18:48:49 by vvaas ### ########.fr */
|
|
/* */
|
|
/******************************************************************************/
|
|
|
|
#include <Bot.hpp>
|
|
|
|
int main()
|
|
{
|
|
Bot greg;
|
|
|
|
greg.init();
|
|
greg.connect_to_server();
|
|
return 0;
|
|
}
|