10 lines
136 B
C
10 lines
136 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
class Util
|
||
|
{
|
||
|
public:
|
||
|
static std::vector<char> load_file(const std::string& path);
|
||
|
};
|