other-reward.ts 157 Bytes
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1 2 3 4 5 6 7 8 9 10 11
import { Reward } from "../reward";

export class OtherReward extends Reward {

    constructor() {
        super('other');
    }

    text: string = '';

}