mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Fixed formatting issues.
This commit is contained in:
parent
5f5aa84ec4
commit
d7588888ae
File diff suppressed because it is too large
Load Diff
@ -33,7 +33,8 @@ class LengthProperty extends AbstractProperty<number> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export abstract class AbstractListProperty<T> extends AbstractProperty<readonly T[]>
|
export abstract class AbstractListProperty<T>
|
||||||
|
extends AbstractProperty<readonly T[]>
|
||||||
implements ListProperty<T> {
|
implements ListProperty<T> {
|
||||||
readonly is_list_property = true;
|
readonly is_list_property = true;
|
||||||
|
|
||||||
|
@ -6,7 +6,8 @@ import { is_list_property, ListChangeType, ListProperty } from "./ListProperty";
|
|||||||
import { AbstractListProperty } from "./AbstractListProperty";
|
import { AbstractListProperty } from "./AbstractListProperty";
|
||||||
import { MappedListProperty } from "./MappedListProperty";
|
import { MappedListProperty } from "./MappedListProperty";
|
||||||
|
|
||||||
export class SimpleListProperty<T> extends AbstractListProperty<T>
|
export class SimpleListProperty<T>
|
||||||
|
extends AbstractListProperty<T>
|
||||||
implements WritableListProperty<T> {
|
implements WritableListProperty<T> {
|
||||||
get val(): readonly T[] {
|
get val(): readonly T[] {
|
||||||
return this.get_val();
|
return this.get_val();
|
||||||
|
@ -24,8 +24,10 @@ export class EventSubGraphView extends View {
|
|||||||
/**
|
/**
|
||||||
* Maps event IDs to GUI data.
|
* Maps event IDs to GUI data.
|
||||||
*/
|
*/
|
||||||
private readonly event_gui_data: Map<QuestEventModel,
|
private readonly event_gui_data: Map<
|
||||||
{ event_view: EventView; position: number }> = new Map();
|
QuestEventModel,
|
||||||
|
{ event_view: EventView; position: number }
|
||||||
|
> = new Map();
|
||||||
|
|
||||||
private readonly event_container_element = div({
|
private readonly event_container_element = div({
|
||||||
className: "quest_editor_EventSubGraphView_event_container",
|
className: "quest_editor_EventSubGraphView_event_container",
|
||||||
|
Loading…
Reference in New Issue
Block a user