- Added GetTime funcs to utils - Added Time() to App class to gather the apps run time in seconds - Updated almost every part of the sourcecode to the D7 Style guide
9 lines
115 B
C++
Executable File
9 lines
115 B
C++
Executable File
#pragma once
|
|
|
|
namespace Amy {
|
|
class Renderer {
|
|
public:
|
|
Renderer();
|
|
~Renderer();
|
|
};
|
|
} // namespace Amy
|