WiiUPluginLoaderBackend/source/plugin/PluginMetaInformation.cpp

12 lines
412 B
C++
Raw Normal View History

2020-05-17 20:43:04 +02:00
#include "PluginMetaInformation.h"
2020-05-28 20:51:31 +02:00
PluginMetaInformation::PluginMetaInformation(const PluginMetaInformation &other) {
2020-05-17 20:43:04 +02:00
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;
2021-10-01 17:25:48 +02:00
this->storageId = other.storageId;
2020-05-17 20:43:04 +02:00
}