| 131 | } |
| 132 | |
| 133 | void Beats::FilesDropped(std::vector<std::string> files, int x, int y) |
| 134 | { |
| 135 | for (auto file : files) |
| 136 | { |
| 137 | Sample* sample = new Sample(); |
| 138 | sample->Read(file.c_str()); |
| 139 | SampleDropped(x, y, sample); |
| 140 | } |
| 141 | |
| 142 | mHighlightColumn = -1; |
| 143 | } |
| 144 | |
| 145 | void Beats::SampleDropped(int x, int y, Sample* sample) |
| 146 | { |