Fix non virtual destructor use

pull/4632/head
Engin Manap 2022-07-08 18:13:25 +02:00
parent ae276987a0
commit c3a89fd2d0
1 changed files with 4 additions and 0 deletions

View File

@ -357,6 +357,10 @@ namespace pmx
{
public:
void virtual Read(std::istream *stream, PmxSetting *setting) = 0;
virtual ~PmxMorphOffset() {
}
};
class PmxMorphVertexOffset : public PmxMorphOffset