9 lines
114 B
C++
9 lines
114 B
C++
#pragma once
|
|
#include <string>
|
|
#include <stdint.h>
|
|
|
|
namespace misc
|
|
{
|
|
int getColorByName(std::string color);
|
|
}
|