Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
iomanager.h
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <string>
12 #include <vector>
13 
14 namespace yage
15 {
16 
17 namespace IoManager
18 {
19 
20 extern bool readFileToBuffer(const std::string &file_path,
21  std::vector<unsigned char> &buffer);
22 
23 }
24 
25 } // namespace yage
bool readFileToBuffer(const std::string &file_path, std::vector< unsigned char > &buffer)
Definition: iomanager.cpp:20