Added ,gitignore

This commit is contained in:
dawidg81 2026-03-06 19:01:07 +01:00
commit 6e136f1970
4 changed files with 16 additions and 3 deletions

6
src/Core/Threader.cpp Normal file
View file

@ -0,0 +1,6 @@
#include "Threader.hpp"
int Threader::winNew()
{
return 0;
}

8
src/Core/Threader.hpp Normal file
View file

@ -0,0 +1,8 @@
#pragma once
#include <thread>
class Threader
{
public:
int winNew();
};

View file

@ -1,3 +0,0 @@
#include <thread>
#pragma once