Eddie James | 21b177e | 2018-12-11 13:14:46 -0600 | [diff] [blame^] | 1 | #include "ikvm_video.hpp" |
2 | |||||
3 | namespace ikvm | ||||
4 | { | ||||
5 | |||||
6 | Video::Video(const std::string& p, Input& input, int fr) : | ||||
7 | height(600), width(800), input(input), path(p) | ||||
8 | { | ||||
9 | } | ||||
10 | |||||
11 | Video::~Video() | ||||
12 | { | ||||
13 | } | ||||
14 | |||||
15 | } // namespace ikvm |