ChessNut/engine/core/card.js
2025-10-18 14:30:09 +02:00

14 lines
No EOL
253 B
JavaScript

import Effect from './effect.js';
class Card {
constructor() {
/** @type {string} */
this.name;
/** @type {string} */
this.description;
/** @type {Effect} */
this.effect;
}
}
export default Card;