mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 20:45:07 +01:00
11 lines
373 B
C++
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;
|
||
|
}
|