This repository was archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.ts
More file actions
60 lines (57 loc) · 1.37 KB
/
index.ts
File metadata and controls
60 lines (57 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import Engine from "./src/engine";
import Player from "./src/player";
import PlayerData from "./src/player-data";
import factions from "./src/factions";
import Event, { EventSource } from "./src/events";
import AvailableCommand from "./src/available-command";
import tiles from "./src/tiles";
import Reward from "./src/reward";
import factionBoards from "./src/faction-boards";
import SpaceMap from "./src/map";
import researchTracks from "./src/research-tracks";
export {
Condition,
Planet,
Resource,
Operator,
ResearchField,
Faction,
Command,
Building,
Booster,
Federation,
BoardAction,
} from "./src/enums";
export {
TechTile,
AdvTechTile,
ScoringTile,
FinalTile,
TechTilePos,
AdvTechTilePos,
Phase,
Round,
Player as PlayerEnum,
Expansion,
} from "./src/enums";
export { BrainstoneArea } from "./src/enums";
export { GaiaHexData, GaiaHex } from "./src/gaia-hex";
export { terraformingStepsRequired, planetNames } from "./src/planets";
export { boardActions } from "./src/actions";
export { FactionBoard, factionBoard } from "./src/faction-boards";
export { roundScorings, finalScorings } from "./src/tiles/scoring";
export { LogEntry, EngineOptions } from "./src/engine";
export {
Player,
PlayerData,
Event,
factions,
AvailableCommand,
tiles,
Reward,
SpaceMap,
researchTracks,
factionBoards,
EventSource,
};
export default Engine;