Skip to content

Commit

Permalink
added core package
Browse files Browse the repository at this point in the history
  • Loading branch information
kleber-jg committed Sep 3, 2021
1 parent f746ad4 commit 958eef5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/editor.ts → src/core/editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Actions } from 'data/actions';
import { Actions } from './actions';

class EditorClass {
public actions: Actions;
Expand Down
2 changes: 1 addition & 1 deletion src/editor-view/actions/actions-toolbar.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Widget } from 'editor-view/widget/widget';
import { Editor } from 'editor';
import { Editor } from 'core/editor';
import './actions-toolbar.scss';
import { ActionButton } from './button/action-button';

Expand Down
3 changes: 1 addition & 2 deletions src/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { Actions } from 'data/actions';
import { Data } from 'data/data';
import { History } from 'data/history';
import { Preferences } from 'data/preferences';
import Phaser from 'phaser-ce';
import { Editor } from './editor';
import { Editor } from './core/editor';
import { EditorView } from './editor-view/editor-view';
import './plugin.scss';
import { SceneView } from './scene-view/scene-view';
Expand Down

0 comments on commit 958eef5

Please sign in to comment.