mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2026-03-17 21:02:23 +01:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
import TextMessage from "./TextMessage.js";
|
|
|
|
export default class TextMessageGisela extends TextMessage
|
|
{
|
|
constructor(text, context) {
|
|
super(text, context);
|
|
this.colorText = '#ffd400';
|
|
this.render();
|
|
}
|
|
} |