WiiUPluginLoaderBackend/source/plugin/PluginMetaInformation.cpp
2022-02-04 16:35:53 +01:00

12 lines
462 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;
}