WiiUPluginLoaderBackend/source/plugin/PluginMetaInformation.cpp

12 lines
462 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) {
2022-02-04 16:25:44 +01:00
this->name = other.name;
this->author = other.author;
this->version = other.version;
this->license = other.license;
2020-05-17 20:43:04 +02:00
this->buildtimestamp = other.buildtimestamp;
2022-02-04 16:25:44 +01:00
this->description = other.description;
this->size = other.size;
this->storageId = other.storageId;
2020-05-17 20:43:04 +02:00
}