Skip to content
Snippets Groups Projects
Commit 7a1ae253 authored by Armin Co's avatar Armin Co
Browse files

Move config into core part.

parent f6c022ad
No related branches found
No related tags found
No related merge requests found
......@@ -4,4 +4,4 @@ if(APPLE)
endif()
# Core QPong library
add_library(qpong_core Particle.cpp ImageBuffer.cpp Player.cpp)
\ No newline at end of file
add_library(qpong_core Particle.cpp ImageBuffer.cpp Player.cpp Config.cpp)
\ No newline at end of file
......@@ -8,6 +8,7 @@
#include<iostream>
#include<fstream>
using namespace QPong;
const char* toStr(Setting s)
{
......
......@@ -12,6 +12,8 @@
#include<map>
#include<vector>
namespace QPong {
enum class Setting
{
......@@ -90,5 +92,5 @@ private:
inline static double s_momentumImageScale = 55580.0;
};
}
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment