mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-03 14:32:36 +00:00
26 lines
657 B
TypeScript
Executable File
26 lines
657 B
TypeScript
Executable File
import Drag from './drag';
|
|
import Mapper from './Mapper';
|
|
import LocalTime from './localTime';
|
|
import ClientTime from './clientTime';
|
|
import LocalStorageSetting from './localStorageSetting';
|
|
import Ping from './ping';
|
|
import CopyToClipboard from './copyToClipboard';
|
|
import DownloadJson from './downloadJson';
|
|
import NewVersionUpdate from './newVersionUpdate';
|
|
import MapAction from './maps/mapAction';
|
|
import ShowCharactersAddAlert from './showCharactersAddAlert';
|
|
|
|
export default {
|
|
DownloadJson,
|
|
Drag,
|
|
MapAction,
|
|
Mapper,
|
|
LocalTime,
|
|
ClientTime,
|
|
LocalStorageSetting,
|
|
Ping,
|
|
CopyToClipboard,
|
|
NewVersionUpdate,
|
|
ShowCharactersAddAlert,
|
|
};
|