WiiUPluginLoaderBackend/source/plugin/PluginMetaInformation.cpp
2020-05-17 20:43:04 +02:00

11 lines
373 B
C++

#include "PluginMetaInformation.h"
PluginMetaInformation::PluginMetaInformation(const PluginMetaInformation& other) {
this->name = other.name;
this->author = other.author;
this->version = other.version;
this->license = other.license;
this->buildtimestamp = other.buildtimestamp;
this->description = other.description;
this->size = other.size;
}