src/Utils/Utils.hpp

Namespaces

Name
Engine
This namespace contains all of the necessary engine components.
Engine::Utils

Source code

#pragma once

#include "Path.hpp"
#include "ArrayView.hpp"
#include "Config.hpp"
#include "Log.hpp"

namespace Engine {
    namespace Utils {
        inline void name_with_underscores(const std::string& arg) {
            (void)arg;
        }
    }
}

Updated on 2022-10-19 at 22:21:59 +0000