ChessNut/engine/core/card.js
2025-10-20 13:23:22 +02:00

14 lines
254 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;