Added ,gitignore
This commit is contained in:
parent
7769e89218
commit
6e136f1970
4 changed files with 16 additions and 3 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
*.exe
|
||||||
|
**~
|
||||||
6
src/Core/Threader.cpp
Normal file
6
src/Core/Threader.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include "Threader.hpp"
|
||||||
|
|
||||||
|
int Threader::winNew()
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
8
src/Core/Threader.hpp
Normal file
8
src/Core/Threader.hpp
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#pragma once
|
||||||
|
#include <thread>
|
||||||
|
|
||||||
|
class Threader
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
int winNew();
|
||||||
|
};
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
#include <thread>
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue