WiiUPluginLoaderBackend/source/plugin/PluginMetaInformation.cpp
2021-10-01 17:25:48 +02:00

12 lines
412 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;
this->storageId = other.storageId;
}