Files
amethyst/include/amethyst/asset.hpp
tobid7 2a2a670e1a # Update
- 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
2025-11-26 13:46:46 +01:00

10 lines
136 B
C++
Executable File

#pragma once
namespace Amy {
class Asset {
public:
Asset() = default;
virtual ~Asset() = default;
};
} // namespace Amy