19 lines
522 B
JavaScript
19 lines
522 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.MoveTrailFill = void 0;
|
|
const OptionsColor_1 = require("../../OptionsColor");
|
|
class MoveTrailFill {
|
|
load(data) {
|
|
if (!data) {
|
|
return;
|
|
}
|
|
if (data.color !== undefined) {
|
|
this.color = OptionsColor_1.OptionsColor.create(this.color, data.color);
|
|
}
|
|
if (data.image !== undefined) {
|
|
this.image = data.image;
|
|
}
|
|
}
|
|
}
|
|
exports.MoveTrailFill = MoveTrailFill;
|