IdeaData
export interface IdeaData {
key: string;
images: string[];
name: string;
description: string;
tags: string[];
type: string;
}
Properties
| Name | Type | Description |
|---|---|---|
| key | string | Idea key |
| images | string[] | Idea images |
| name | string | Idea name |
| description | string | Idea description |
| tags | string[] | Idea tags |
| type | string | Idea type |
Description
This structure contains informations about the idea. It's used to display the ideas in the ideas tab in the room/plot creator setIdeas method.