Skip to content

Commit ccb1423

Browse files
committed
Merge branch 'master' of https://github.com/mattlink/ascii
2 parents 8e69283 + 31b72bc commit ccb1423

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

.github/workflows/blank.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the action will run. Triggers the workflow on push
6+
# events but only for the master branch
7+
on:
8+
push:
9+
branches: [ master ]
10+
11+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12+
jobs:
13+
# This workflow contains a single job called "build"
14+
build:
15+
# The type of runner that the job will run on
16+
runs-on: ubuntu-latest
17+
18+
# Steps represent a sequence of tasks that will be executed as part of the job
19+
steps:
20+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21+
- uses: actions/checkout@v2
22+
23+
# Runs a single command using the runners shell
24+
- name: Run a one-line script
25+
run: echo Hello, world!
26+
27+
# Runs a set of commands using the runners shell
28+
- name: Run a multi-line script
29+
run: |
30+
echo Add other actions to build,
31+
echo test, and deploy your project.

src/Systems/renderer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Actor } from "../Actors/Actor";
22
import { Tile } from "../tile";
33
import { GameObject } from "../GameObject";
44
import { Window } from "./window";
5-
import { Room } from "../Rooms/room";
5+
import { Room } from "../Rooms/Room";
66
import { Floor } from "../Rooms/Environment";
77
import { Camera } from "./camera";
88
import { Menu, MenuInfo } from "./Menu/Menu";
@@ -273,4 +273,4 @@ export class Renderer {
273273
return x.toString() + 'px';
274274
}
275275

276-
}
276+
}

0 commit comments

Comments
 (0)