fix indentation, now using tabs

This commit is contained in:
arthur.jamet
2021-05-21 23:50:54 +02:00
parent 17f0db2bd1
commit dd128b8b97
71 changed files with 1457 additions and 1473 deletions
+6 -6
View File
@@ -11,14 +11,14 @@
#include <string>
namespace RAY {
class IRessource {
public:
virtual ~IRessource() = default;
class IRessource {
public:
virtual ~IRessource() = default;
virtual bool load(const std::string &filePath) = 0;
virtual bool load(const std::string &filePath) = 0;
virtual bool unload() = 0;
};
virtual bool unload() = 0;
};
};
#endif /* !RESSOURCE_HPP_ */