mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 14:09:46 +00:00
use emojis instead
This commit is contained in:
@@ -635,18 +635,18 @@ export class StructureIconsLayer implements Layer {
|
||||
return button;
|
||||
};
|
||||
|
||||
const confirm = makeButton("OK", "#2e7d32", () => {
|
||||
const confirm = makeButton("✓", "#2e7d32", () => {
|
||||
if (this.uiState.lockedGhostTile) {
|
||||
this.emitBuildIntent(this.uiState.lockedGhostTile);
|
||||
}
|
||||
});
|
||||
|
||||
const flip = makeButton("Flip", "#1565c0", () => {
|
||||
const flip = makeButton("↕", "#1565c0", () => {
|
||||
const next = !this.uiState.rocketDirectionUp;
|
||||
this.eventBus.emit(new SwapRocketDirectionEvent(next));
|
||||
});
|
||||
|
||||
const cancel = makeButton("X", "#b71c1c", () =>
|
||||
const cancel = makeButton("✕", "#b71c1c", () =>
|
||||
this.removeGhostStructure(),
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user