stuff-from-scratch/src/video/Video.cpp
2022-01-01 18:46:31 +00:00

16 lines
227 B
C++

#include "Video.h"
std::unique_ptr<Video> Video::Create()
{
return std::make_unique<Video>();
}
void Video::SetPath(const std::string& path)
{
mPath = path;
}
std::string Video::GetPath() const
{
return mPath;
}