Page MenuHomePhabricator (Chris)

No OneTemporary

Size
153 KB
Referenced Files
None
Subscribers
None
diff --git a/BackGround.h b/BackGround.h
index 4f61f74..c9b0e8c 100644
--- a/BackGround.h
+++ b/BackGround.h
@@ -1,23 +1,23 @@
#pragma once
-#include<allegro5\allegro.h>
-#include<allegro5\allegro_image.h>
+#include<allegro5/allegro.h>
+#include<allegro5/allegro_image.h>
class BackGround
{
public:
float x;
float y;
float velX;
float velY;
int dirX;
int dirY;
int WIDTH;
int HEIGHT;
ALLEGRO_BITMAP *image;
BackGround();
~BackGround();
};
diff --git a/Barrier.h b/Barrier.h
index 832f72c..e45546d 100644
--- a/Barrier.h
+++ b/Barrier.h
@@ -1,29 +1,29 @@
#pragma once
-#include<allegro5\allegro.h>
-#include<allegro5\allegro_image.h>
+#include<allegro5/allegro.h>
+#include<allegro5/allegro_image.h>
using namespace std;
class Barrier
{
public:
Barrier();
void SetBarrierpos(int x, int y);
void setLife(int l);
void drawIfActive(float x, float y);
int x_pos;
int y_pos;
int life_points;
bool active;
ALLEGRO_BITMAP *CurrentImage;
const int BHeight = 31;
const int Bright = 100;
const int Bleft = 0;
};
static const char *Images[5] = { "Pictures/B4.png","Pictures/B3.png","Pictures/B2.png","Pictures/B1.png","Pictures/B0.png" };
\ No newline at end of file
diff --git a/SpaceInvadersTest.vcxproj b/SpaceInvadersTest.vcxproj
index 9832f0b..3b91e35 100644
--- a/SpaceInvadersTest.vcxproj
+++ b/SpaceInvadersTest.vcxproj
@@ -1,115 +1,115 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{70C476C5-EF01-453C-9E01-6FACFE08D371}</ProjectGuid>
<RootNamespace>SpaceInvadersTest</RootNamespace>
<ProjectName>DarthInvaders</ProjectName>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <Import Project="$(VCTargetsPath)/Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <Import Project="$(VCTargetsPath)/Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="$(UserRootDir)/Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)/Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="$(UserRootDir)/Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)/Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Allegro_AddonImage>true</Allegro_AddonImage>
<Allegro_AddonTTF>true</Allegro_AddonTTF>
<Allegro_AddonPrimitives>true</Allegro_AddonPrimitives>
<Allegro_AddonDialog>true</Allegro_AddonDialog>
<Allegro_AddonFont>true</Allegro_AddonFont>
<Allegro_AddonColor>true</Allegro_AddonColor>
<Allegro_LibraryType>DynamicDebug</Allegro_LibraryType>
<Allegro_AddonAudio>true</Allegro_AddonAudio>
<Allegro_AddonAcodec>true</Allegro_AddonAcodec>
<Allegro_AddonMemfile>true</Allegro_AddonMemfile>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="BackGround.cpp" />
<ClCompile Include="Barrier.cpp" />
<ClCompile Include="Global.cpp" />
<ClCompile Include="Highscores.cpp" />
<ClCompile Include="Spaceship.cpp" />
<ClCompile Include="Bullet.cpp" />
<ClCompile Include="Enemy.cpp" />
<ClCompile Include="Test.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="BackGround.h" />
<ClInclude Include="Barrier.h" />
<ClInclude Include="Highscores.h" />
<ClInclude Include="Spaceship.h" />
<ClInclude Include="Bullet.h" />
<ClInclude Include="Enemy.h" />
<ClInclude Include="Global.h" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <Import Project="$(VCTargetsPath)/Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
- <Import Project="packages\AllegroDeps.1.5.0.1\build\native\AllegroDeps.targets" Condition="Exists('packages\AllegroDeps.1.5.0.1\build\native\AllegroDeps.targets')" />
- <Import Project="packages\Allegro.5.2.2.1\build\native\Allegro.targets" Condition="Exists('packages\Allegro.5.2.2.1\build\native\Allegro.targets')" />
+ <Import Project="packages/AllegroDeps.1.5.0.1/build/native/AllegroDeps.targets" Condition="Exists('packages/AllegroDeps.1.5.0.1/build/native/AllegroDeps.targets')" />
+ <Import Project="packages/Allegro.5.2.2.1/build/native/Allegro.targets" Condition="Exists('packages/Allegro.5.2.2.1/build/native/Allegro.targets')" />
</ImportGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
- <Error Condition="!Exists('packages\AllegroDeps.1.5.0.1\build\native\AllegroDeps.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\AllegroDeps.1.5.0.1\build\native\AllegroDeps.targets'))" />
- <Error Condition="!Exists('packages\Allegro.5.2.2.1\build\native\Allegro.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Allegro.5.2.2.1\build\native\Allegro.targets'))" />
+ <Error Condition="!Exists('packages/AllegroDeps.1.5.0.1/build/native/AllegroDeps.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages/AllegroDeps.1.5.0.1/build/native/AllegroDeps.targets'))" />
+ <Error Condition="!Exists('packages/Allegro.5.2.2.1/build/native/Allegro.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages/Allegro.5.2.2.1/build/native/Allegro.targets'))" />
</Target>
</Project>
\ No newline at end of file
diff --git a/Spaceship.h b/Spaceship.h
index cad29f6..a872004 100644
--- a/Spaceship.h
+++ b/Spaceship.h
@@ -1,24 +1,24 @@
#pragma once
-#include<allegro5\allegro.h>
-#include<allegro5\allegro_primitives.h>
+#include<allegro5/allegro.h>
+#include<allegro5/allegro_primitives.h>
#include "Global.h"
class Spaceship
{
public:
int x_pos;
int y_pos;
int boxright;
int boxleft;
int boxheight;
int health;
bool active;
Spaceship(int, int);
Spaceship();
void MoveSpaceshipLeft();
void MoveSpaceshipRight();
};
\ No newline at end of file
diff --git a/Test.cpp b/Test.cpp
index 46a8da9..3cbb3d1 100644
--- a/Test.cpp
+++ b/Test.cpp
@@ -1,1012 +1,1057 @@
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup") //no console window behind game window
-#include<allegro5\allegro.h>
-#include<allegro5\allegro_native_dialog.h>
-#include<allegro5\allegro_primitives.h>
-#include<allegro5\allegro_image.h>
-#include <allegro5\allegro_font.h>
-#include <allegro5\allegro_ttf.h>
-#include <allegro5\allegro_audio.h>
-#include <allegro5\allegro_acodec.h>
+#include<allegro5/allegro.h>
+#include<allegro5/allegro_native_dialog.h>
+#include<allegro5/allegro_primitives.h>
+#include<allegro5/allegro_image.h>
+#include <allegro5/allegro_font.h>
+#include <allegro5/allegro_ttf.h>
+#include <allegro5/allegro_audio.h>
+#include <allegro5/allegro_acodec.h>
#include <string>
#include <string.h>
#include <iostream>
#include <fstream>
+#ifdef __linux__
+#include <unistd.h>
+#include <sys/types.h>
+#include <pwd.h>
+#include <libgen.h>
+#endif
+
#include "Enemy.h"
#include "Spaceship.h"
#include "Bullet.h"
#include "Global.h"
#include "BackGround.h"
#include "Barrier.h"
#include "Highscores.h"
using namespace std;
//GLOBALS
enum KEYS { LEFT, RIGHT, SPACE };
bool keys[5] = { false,false,false };
int gameState = 1; //initial gamestate is menu
extern int width;
extern int height;
int numAlive = NUM_COLUMNS*NUM_ROWS;
int EnemyWaveCount = 0;
int input = 0; //count variable to ensure action occurs only once
int output = 0; //count variable to ensure action occurs only once
int x = 20; //initial position of animated ship
int score = 0;
char *nameString;
bool startAnim = false;
bool isHighscore = false; //will be true if user's score is higher than lowest highscore
int lowScore = 0; //value of lowest highscore
const int FPS = 60;
bool done = false;
bool redraw = true;
//METHODS
void setEnemy();
void gameRestart();
void collideEnemy(int&);
void collidePlayer();
void moveDown(int&);
void enemyShoot();
void updateBullet();
bool reachEnd();
void InitBackground(BackGround &back, float x, float y, float velx, float vely, int width, int height, int dirX, int dirY, ALLEGRO_BITMAP *image);
void UpdateBackground(BackGround &back);
void DrawBackground(BackGround &back);
void CollideBarrier();
void Reactivate_Enemies();
void DrawAnimation(ALLEGRO_BITMAP *pic, int &y);
void writeScore();
void readScores();
void EnemyReachEnd();
void BulletBarrierCollide();
void InitBarriers();
void Reactivate_Barriers();
void updateEnemyCount();
void UpdateBarrierImages(ALLEGRO_BITMAP *SpaceBarrier[]);
//INITIALISE
Spaceship player(width / 2, height * 4 / 5);
Bullet playerBullet(player.x_pos, player.y_pos, 10, true);
Bullet enemyBullet(0, 0, 10, false);
Enemy arrEnem[NUM_COLUMNS][NUM_ROWS]; //array of objects
Barrier redBarrier[3];
Highscores arrScores[11];
BackGround BG;
BackGround MG;
BackGround FG;
BackGround MM;
-
+std::string confdir;
int main(void)
{
+ if (!al_init()) {
+ al_show_native_message_box(NULL, NULL, NULL, "Could not initialize allegro",
+ NULL, NULL);
+ return -1;
+ }
+
+#ifdef __linux__
+ ALLEGRO_PATH* exepath = al_get_standard_path(ALLEGRO_EXENAME_PATH);
+ al_set_path_filename(exepath , NULL);
+ al_change_directory(al_path_cstr(exepath, '/'));
+ al_change_directory((string{dirname(strdup(al_path_cstr(exepath, '/')))} +"/share/darthinvaders").c_str());
+ al_destroy_path(exepath);
+
+ char const* cf = getenv("XDG_CONFIG_HOME");
+ if (!cf) {
+ char const* hd = getenv("HOME");
+ std::string homedir = getenv("HOME");
+ if (!hd) {
+ homedir = getpwuid(getuid())->pw_dir;
+ } else {
+ confdir = std::string(hd) + "/.config";
+ }
+ } else {
+ confdir = getenv("XDG_CONFIG_HOME");
+ }
+
+ confdir += "/";
+
+ // if scores file is not user's dir, copy it in.
+ // it'll still degrade gracefully if you can't write here
+ // Filesystem standard says to put highscores in /var/games but then new users have no write perms??
+ std::string path = confdir + "/darthinvaders-scores.txt";
+ if (access (confdir.c_str(), F_OK) == 0 && access(path.c_str(), F_OK) != 0 && access (confdir.c_str(), W_OK) == 0) {
+ ifstream source("darthinvaders-scores.txt", ios::binary);
+ ofstream dest(path, ios::binary);
+
+ dest << source.rdbuf();
+
+ source.close();
+ dest.close();
+ }
+#else
+ confdir = "";
+#endif
readScores(); //reads in scores from textfile
setEnemy();
enemyBullet.isFriendly = false;
srand((unsigned)time(NULL));
-
//variables
- if (!al_init())
- {
- al_show_native_message_box(NULL, NULL, NULL, "Could not initialize allegro", NULL, NULL);
- return -1;
- }
//Allegro variables
ALLEGRO_DISPLAY *DISPLAY = NULL;
ALLEGRO_BITMAP *picHealth[7];
ALLEGRO_BITMAP *picShip = NULL;
ALLEGRO_BITMAP *picBullet = NULL;
ALLEGRO_BITMAP *picGreenLazer = NULL;
ALLEGRO_BITMAP *picEnemy = NULL;
ALLEGRO_BITMAP *Game = NULL;
ALLEGRO_BITMAP *MENU = NULL;
ALLEGRO_BITMAP *bgImage = NULL;
ALLEGRO_BITMAP *mgImage = NULL;
ALLEGRO_BITMAP *fgImage = NULL;
ALLEGRO_BITMAP *SpaceBarrier[5];
ALLEGRO_BITMAP *animShip;
ALLEGRO_BITMAP *logo;
ALLEGRO_BITMAP *State3 = NULL;
ALLEGRO_BITMAP *State4 = NULL;
ALLEGRO_EVENT_QUEUE *TestQueue = NULL;
ALLEGRO_TIMER *timer = NULL;
ALLEGRO_FONT *font38 = NULL;
ALLEGRO_FONT *starFont = NULL;
ALLEGRO_FONT *starOutline = NULL;
ALLEGRO_FONT *fontName = NULL;
ALLEGRO_SAMPLE *blaster = NULL;
ALLEGRO_SAMPLE *explosion = NULL;
ALLEGRO_SAMPLE *music = NULL;
ALLEGRO_SAMPLE *startGame = NULL;
ALLEGRO_SAMPLE *emperor1 = NULL;
ALLEGRO_SAMPLE *emperor2 = NULL;
ALLEGRO_SAMPLE *emperor3 = NULL;
ALLEGRO_USTR* str = al_ustr_new("ENTER NAME");
//Allegro Module Init
al_init_image_addon();
al_set_new_window_position(400, 200); //set pos of game window
DISPLAY = al_create_display(width, height);
al_hide_mouse_cursor(DISPLAY);
al_init_primitives_addon();
al_install_keyboard();
al_init_font_addon();
al_init_ttf_addon();
al_install_audio();
al_init_acodec_addon();
if (!DISPLAY)
{
al_show_native_message_box(NULL, NULL, NULL, "Could not initialize display", NULL, NULL);
return -1;
}
//Load Sounds
al_reserve_samples(7);
blaster = al_load_sample("Sounds/XWing-Laser.ogg");
explosion = al_load_sample("Sounds/Blast.ogg");
startGame = al_load_sample("Sounds/xwing.ogg");
music = al_load_sample("Sounds/Star_Wars.ogg");
emperor1 = al_load_sample("Sounds/Emperor1.ogg");
emperor2 = al_load_sample("Sounds/Emperor2.ogg");
emperor3 = al_load_sample("Sounds/Emperor3.ogg");
- State3 = al_load_bitmap("Pictures/EARTH.png");
+ State3 = al_load_bitmap("Pictures/Earth.png");
State4 = al_load_bitmap("Pictures/DeathStar.png");
//Load Pictures
picBullet = al_load_bitmap("Pictures/Lazer.png");
picGreenLazer = al_load_bitmap("Pictures/GreenLazer.png");
picShip = al_load_bitmap("Pictures/player1.png");
picEnemy = al_load_bitmap("Pictures/enemy.png");
MENU = al_load_bitmap("Pictures/starBG.png");
for (int i = 0; i < 5; i++)
SpaceBarrier[i] = al_load_bitmap(Images[i]);
for (int i = 0; i < 5; i++)
al_convert_mask_to_alpha(SpaceBarrier[i], al_map_rgb(255, 255, 255));
for (int i = 0; i < 3; i++)
redBarrier[i].CurrentImage = SpaceBarrier[4];
picHealth[0] = al_load_bitmap("Pictures/1.png");
picHealth[1] = al_load_bitmap("Pictures/2.png");
picHealth[2] = al_load_bitmap("Pictures/3.png");
picHealth[3] = al_load_bitmap("Pictures/4.png");
picHealth[4] = al_load_bitmap("Pictures/5.png");
picHealth[5] = al_load_bitmap("Pictures/6.png");
picHealth[6] = al_load_bitmap("Pictures/blank1.png");
for (int i = 0; i < 7; i++)
al_convert_mask_to_alpha(picHealth[i], al_map_rgb(0, 0, 0));
bgImage = al_load_bitmap("Pictures/starBG.png");
mgImage = al_load_bitmap("Pictures/starMG.jpg");
fgImage = al_load_bitmap("Pictures/starFG.png");
animShip = al_load_bitmap("Pictures/player2.png");
logo = al_load_bitmap("Pictures/logo.png");
al_convert_mask_to_alpha(picShip, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(picEnemy, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(picBullet, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(mgImage, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(animShip, al_map_rgb(0, 0, 0));
InitBackground(BG, 0, 0, 1, 0, 800, 600, -1, 1, bgImage);
InitBackground(MG, 0, 0, 3, 0, 2000, 768, -1, 1, mgImage);
InitBackground(FG, 0, 0, 5, 0, 800, 600, -1, 1, fgImage);
InitBackground(MM, 0, 0, 1, 0, 800, 600, -1, 1, MENU);
InitBarriers();
timer = al_create_timer(1.0 / FPS);
al_set_display_icon(DISPLAY, picShip);
al_play_sample(music, 1, 0, 1, ALLEGRO_PLAYMODE_LOOP, NULL);
TestQueue = al_create_event_queue();
al_register_event_source(TestQueue, al_get_keyboard_event_source());
al_register_event_source(TestQueue, al_get_display_event_source(DISPLAY));
al_register_event_source(TestQueue, al_get_timer_event_source(timer));
al_start_timer(timer);
int frameCount = 0;
int pos = (int)al_ustr_size(str);
font38 = al_load_font("Fonts/Legacy.ttf", 38, 0);
starFont = al_load_font("Fonts/STARWARS.TTF", 80, 0);
starOutline = al_load_font("Fonts/STARWARS.TTF", 81, 0);
fontName = al_load_font("Fonts/Legacy.ttf", 50, 0);
while (!done)
{
ALLEGRO_EVENT GETKEY;
al_wait_for_event(TestQueue, &GETKEY);
if (GETKEY.type == ALLEGRO_EVENT_DISPLAY_CLOSE) //will allow clicking X button to close program
{
done = true;
}
else if (GETKEY.type == ALLEGRO_EVENT_TIMER)
{
redraw = true;
UpdateBackground(MM);
frameCount++;
if (keys[LEFT] && gameState == 2)
player.MoveSpaceshipLeft();
if (keys[RIGHT] && gameState == 2)
player.MoveSpaceshipRight();
if (keys[SPACE]) //Spacebar will fire
{
if (gameState == 1) {
if (!startAnim)
al_play_sample(startGame, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL); //plays when spaceship flies across screen
startAnim = true;
}
else if (gameState == 2)
{
if (playerBullet.status == 0)
{
al_play_sample(blaster, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
playerBullet.status = 1;
}
}
}
if (gameState == 2)
{
UpdateBackground(BG);
UpdateBackground(MG);
UpdateBackground(FG);
collideEnemy(score);
updateEnemyCount();
CollideBarrier();
collidePlayer();
BulletBarrierCollide();
EnemyReachEnd();
enemyShoot();
moveDown(frameCount);
updateBullet();
}
}
else if (GETKEY.type == ALLEGRO_EVENT_KEY_DOWN)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE: //esc to end the game
if (gameState == 2)
gameState = 3;
else if (gameState == 3)
gameState = 4;
else
done = true;
break;
case ALLEGRO_KEY_RIGHT:
keys[RIGHT] = true;
break;
case ALLEGRO_KEY_LEFT:
keys[LEFT] = true;
break;
case ALLEGRO_KEY_SPACE:
keys[SPACE] = true;
break;
case ALLEGRO_KEY_H:
if (gameState == 1)
gameState = 4;
break;
case ALLEGRO_KEY_BACKSPACE: //backspace for name input
if (gameState == 3)
if (al_ustr_prev(str, &pos))
al_ustr_truncate(str, pos);
break;
case ALLEGRO_KEY_ENTER: //will display leaderboard once they press enter.
if (gameState == 3)
{
gameState = 4;
break;
}
if (gameState == 4)
{
gameRestart();
al_ustr_free(str);
str = al_ustr_new("ENTER NAME");
break;
}
break;
}
}
if (GETKEY.type == ALLEGRO_EVENT_KEY_UP)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_RIGHT:
keys[RIGHT] = false;
break;
case ALLEGRO_KEY_LEFT:
keys[LEFT] = false;
break;
case ALLEGRO_KEY_SPACE:
keys[SPACE] = false;
break;
}
}
else if (GETKEY.type == ALLEGRO_EVENT_KEY_CHAR && gameState == 3 && isHighscore)
{
if (GETKEY.keyboard.unichar >= 32)
{
if (input == 0)
{
al_ustr_remove_range(str, 0, al_ustr_length(str)); //clears 'ENTER NAME: '
pos = 0;
input = 1;
}
pos += al_ustr_append_chr(str, GETKEY.keyboard.unichar);
}
}
if (redraw && al_is_event_queue_empty(TestQueue)) //rendering
{
redraw = false;
if (gameState == 1) //menu
{
DrawBackground(MM);
if (startAnim)
{
DrawAnimation(animShip, x);
}
al_draw_text(font38, al_map_rgb(255, 40, 78), width / 2, height - 750, ALLEGRO_ALIGN_CENTRE, "AMMST PRESENTS");
al_draw_bitmap(logo, 140, (height)-690, 0);
al_draw_text(font38, al_map_rgb(255, 40, 78), (width / 2), (height)-250, ALLEGRO_ALIGN_CENTRE, "PRESS SPACE TO START");
al_draw_text(font38, al_map_rgb(255, 40, 78), (width / 2), (height - 200), ALLEGRO_ALIGN_CENTRE, "PRESS H TO VIEW HIGHSCORES");
al_draw_text(font38, al_map_rgb(255, 40, 78), (width / 2), (height - 150), ALLEGRO_ALIGN_CENTRE, "PRESS ESC TO EXIT");
}
else if (gameState == 2) //main game
{
DrawBackground(BG);
DrawBackground(MG);
DrawBackground(FG);
UpdateBarrierImages(SpaceBarrier);
redBarrier[0].drawIfActive(50, 500);
redBarrier[1].drawIfActive(435, 500);
redBarrier[2].drawIfActive(820, 500);
if (playerBullet.status == 1 && player.active) //if bullet still active
{
playerBullet.Increment(); //bullet will move pos
al_draw_bitmap(picGreenLazer, playerBullet.x_pos, playerBullet.y_pos, 0); //redraw at new pos
if (playerBullet.y_pos < 20)
{
playerBullet.status = 0;
updateBullet();
}
}
if (enemyBullet.status == 1)
{
enemyBullet.Increment(); //bullet will move pos
al_draw_bitmap(picBullet, enemyBullet.x_pos, enemyBullet.y_pos, 0);
}
switch (player.health)
{
case 60:
al_draw_bitmap(picHealth[0], 10, 40, 0);
break;
case 50:
al_draw_bitmap(picHealth[1], 10, 40, 0);
break;
case 40:
al_draw_bitmap(picHealth[2], 10, 40, 0);
break;
case 30:
al_draw_bitmap(picHealth[3], 10, 40, 0);
break;
case 20:
al_draw_bitmap(picHealth[4], 10, 40, 0);
break;
case 10:
al_draw_bitmap(picHealth[5], 10, 40, 0);
break;
case 0:
al_draw_bitmap(picHealth[6], 10, 40, 0);
break;
}
if (player.health > 0)
{
al_draw_bitmap(picShip, player.x_pos - 45, player.y_pos, 0);
}
bool test = reachEnd();
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active)
{
arrEnem[i][j].Move(test);
al_draw_bitmap(picEnemy, arrEnem[i][j].x_pos, arrEnem[i][j].y_pos, 0);
}
}
}
al_draw_textf(font38, al_map_rgb(255, 0, 0), 10, 0, 0, "SCORE: %i", score);
}
else if (gameState == 3) //end game
{
al_draw_bitmap(State3, 0, 0, ALLEGRO_ALIGN_CENTRE);
DrawAnimation(animShip, x);
if (player.health == 0)
{
al_play_sample(explosion, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
if (frameCount % 7 == 0)
al_play_sample(emperor3, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
else if (frameCount % 3 == 0)
al_play_sample(emperor2, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
else
al_play_sample(emperor1, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
player.health = 1; //will only sound once
}
//check to determine if he made a highscore
if (score>lowScore)
isHighscore = true;
nameString = al_cstr_dup(str);
al_draw_textf(starFont, al_map_rgb(45,119,166), width / 2, 50, ALLEGRO_ALIGN_CENTRE, "FINAL SCORE: %i", score);
if (isHighscore)
al_draw_text(fontName, al_map_rgb_f(1, 1, 1), width / 2, 120, ALLEGRO_ALIGN_CENTRE, nameString);
}
else if (gameState == 4) //highscores
{
al_draw_bitmap(State4, 0, 0, 0);
al_draw_text(font38, al_map_rgb(255, 255, 0), width/2, height-40, ALLEGRO_ALIGN_CENTRE, "PRESS ENTER TO RETURN TO MAIN MENU");
/*
al_draw_text(font38, al_map_rgb(255, 0, 0), width - 140, 90, NULL, "PRESS");
al_draw_text(font38, al_map_rgb(255, 0, 0), width - 140, 120, NULL, "ESC");
al_draw_text(font38, al_map_rgb(255, 0, 0), width - 140, 150, NULL, "TO");
al_draw_text(font38, al_map_rgb(255, 0, 0), width - 140, 180, NULL, "EXIT");
*/
if (isHighscore && output == 0)
{
writeScore();
output = 1;
}
al_draw_textf(starFont, al_map_rgb(255, 255, 0), width / 2, 40, ALLEGRO_ALIGN_CENTRE, "HIGHSCORES");
for (int i = 0; i < 10; i++)
{
al_draw_textf(font38, al_map_rgb(255, 0, 0), width / 2 - 60, 120 + i * 60, ALLEGRO_ALIGN_RIGHT, "%i", arrScores[i].score);
al_draw_textf(font38, al_map_rgb(255, 0, 0), width / 2 + 60, 120 + i * 60, ALLEGRO_ALIGN_LEFT, "%s", arrScores[i].name.c_str());
}
}
al_flip_display(); //flip display to show all drawn objects
al_clear_to_color(al_map_rgb(0, 0, 0)); //background colour
}
}
al_destroy_sample(blaster);
al_destroy_sample(explosion);
al_destroy_sample(startGame);
al_destroy_sample(music);
al_destroy_sample(emperor1);
al_destroy_sample(emperor2);
al_destroy_sample(emperor3);
al_destroy_event_queue(TestQueue);
al_destroy_timer(timer);
al_destroy_display(DISPLAY);
al_destroy_font(font38);
al_destroy_font(starFont);
al_destroy_font(fontName);
al_destroy_bitmap(Game);
al_destroy_bitmap(State3);
al_destroy_bitmap(State4);
al_destroy_bitmap(MENU);
al_destroy_bitmap(picEnemy);
al_destroy_bitmap(picShip);
al_destroy_bitmap(picBullet);
al_destroy_bitmap(picGreenLazer);
al_destroy_bitmap(bgImage);
al_destroy_bitmap(mgImage);
al_destroy_bitmap(fgImage);
al_destroy_bitmap(animShip);
al_destroy_bitmap(logo);
for (int i = 0; i < 7; i++)
al_destroy_bitmap(picHealth[i]);
for (int i = 0; i < 5; i++)
al_destroy_bitmap(SpaceBarrier[i]);
return 0;
}
void collidePlayer()
{
if (enemyBullet.status)
{
if (enemyBullet.y_pos < player.y_pos + player.boxheight //checks if within box
&& enemyBullet.y_pos > player.y_pos - player.boxheight
&& enemyBullet.x_pos < player.x_pos + player.boxright
&& enemyBullet.x_pos > player.x_pos - player.boxleft)
{
enemyBullet.status = 0; //bullet set to not active
player.health -= 10;
}
}
if (player.health == 0)
{
player.active = false;
gameState = 3;
}
}
void setEnemy()
{
//row 1
arrEnem[0][0].set(width / 2 - sp, 65); //left
arrEnem[1][0].set(width / 2, 65); //middle
arrEnem[2][0].set(width / 2 + sp, 65); //right
arrEnem[3][0].set(width / 2 - 2 * sp, 65);
arrEnem[4][0].set(width / 2 + 2 * sp, 65);
arrEnem[5][0].set(width / 2 - 3 * sp, 65);
arrEnem[6][0].set(width / 2 + 3 * sp, 65);
arrEnem[7][0].set(width / 2 - 4 * sp, 65);
//row 2
arrEnem[0][1].set(width / 2 - sp, 130); //left
arrEnem[1][1].set(width / 2, 130); //middle
arrEnem[2][1].set(width / 2 + sp, 130); //right
arrEnem[3][1].set(width / 2 - 2 * sp, 130);
arrEnem[4][1].set(width / 2 + 2 * sp, 130);
arrEnem[5][1].set(width / 2 - 3 * sp, 130);
arrEnem[6][1].set(width / 2 + 3 * sp, 130);
arrEnem[7][1].set(width / 2 - 4 * sp, 130);
//row 3
arrEnem[0][2].set(width / 2 - sp, 195); //left
arrEnem[1][2].set(width / 2, 195); //middle
arrEnem[2][2].set(width / 2 + sp, 195); //right
arrEnem[3][2].set(width / 2 - 2 * sp, 195);
arrEnem[4][2].set(width / 2 + 2 * sp, 195);
arrEnem[5][2].set(width / 2 - 3 * sp, 195);
arrEnem[6][2].set(width / 2 + 3 * sp, 195);
arrEnem[7][2].set(width / 2 - 4 * sp, 195);
//row 4
arrEnem[0][3].set(width / 2 - sp, 260);
arrEnem[1][3].set(width / 2, 260);
arrEnem[2][3].set(width / 2 + sp, 260);
arrEnem[3][3].set(width / 2 - 2 * sp, 260);
arrEnem[4][3].set(width / 2 + 2 * sp, 260);
arrEnem[5][3].set(width / 2 - 3 * sp, 260);
arrEnem[6][3].set(width / 2 + 3 * sp, 260);
arrEnem[7][3].set(width / 2 - 4 * sp, 260);
}
void collideEnemy(int &score)
{
if (playerBullet.status)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++) //collision detection ahead. Proceed with caution
{
if (arrEnem[i][j].active) //checks if enemy active
{
if (playerBullet.y_pos - 25 < arrEnem[i][j].y_pos + arrEnem[i][j].boxheight //checks if within box of enemy
&& playerBullet.y_pos > arrEnem[i][j].y_pos - arrEnem[i][j].boxheight
&& playerBullet.x_pos < arrEnem[i][j].x_pos + arrEnem[i][j].boxright
&& playerBullet.x_pos > arrEnem[i][j].x_pos - arrEnem[i][j].boxleft)
{
playerBullet.status = 0; //bullet set to not active
arrEnem[i][j].active = false; //enemy set to not active
switch (j)
{
case 0:
score += 40;
break;
case 1:
score += 20;
break;
case 2:
score += 20;
break;
default:
score += 10;
break;
}
numAlive--;
}
}
}
}
}
}
void moveDown(int &frameCount)
{
int interval = 60; //how long enemies take to move down depends on how many enemies left
if (numAlive > 30)
{
interval = 360;
}
else if (30 > numAlive && numAlive > 15)
{
interval = 300;
}
else if (15 > numAlive && numAlive > 8)
{
interval = 240;
}
else if (8 > numAlive && numAlive > 2)
{
interval = 120;
}
else if (numAlive == 0)
{
gameState = 3;
}
if (frameCount % interval == 0)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
arrEnem[i][j].y_pos += 20;
}
}
}
}
void enemyShoot()
{
if (!enemyBullet.status)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active)
{
int randCol = rand() % NUM_COLUMNS;
int randRow = rand() % NUM_ROWS;
if (randCol == i && randRow == j)
{
enemyBullet.UpdatebulletPos(arrEnem[i][j]);
enemyBullet.status = 1;
break;
}
}
}
}
}
}
void updateBullet()
{
if (playerBullet.status == 0) //while bullet not active sets pos of ship as initial bullet pos
playerBullet.UpdateBulletPos(player);
}
bool reachEnd() //returns true if any enemy hits either of the sides
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active) //checks if enemy active
{
if (width - 80 < arrEnem[i][j].x_pos && arrEnem[i][j].speed > 0) //if moving to the right and close to right wall
{
return true;
break;
}
else if (10 > arrEnem[i][j].x_pos && arrEnem[i][j].speed < 0) //if moving to the left and close to left wall
{
return true;
break;
}
}
}
}
return false;
}
void InitBackground(BackGround &back, float x, float y, float velx, float vely, int width, int height, int dirX, int dirY, ALLEGRO_BITMAP *image)
{
back.x = x;
back.y = y;
back.velX = velx;
back.velY = vely;
back.WIDTH = width;
back.HEIGHT = height;
back.dirX = dirX;
back.dirY = dirY;
back.image = image;
}
void UpdateBackground(BackGround &back)
{
back.x += back.velX * back.dirX;
if (back.WIDTH < 1024 && back.x + back.WIDTH <= 100)
back.x = 0;
else if (back.WIDTH > 1024 && back.x + back.WIDTH <= 0)
back.x = 0;
}
void DrawBackground(BackGround &back)
{
al_draw_bitmap(back.image, back.x, back.y, 0);
al_draw_bitmap(back.image, back.x + back.WIDTH, back.HEIGHT, 0);
al_draw_bitmap(back.image, back.x, back.HEIGHT, 0);
al_draw_bitmap(back.image, back.x + back.WIDTH, back.y, 0);
}
void InitBarriers()
{
redBarrier[0].SetBarrierpos(50, 500);
redBarrier[1].SetBarrierpos(435, 500);
redBarrier[2].SetBarrierpos(820, 500);
for (int i = 0; i < 3; i++)
{
redBarrier[i].setLife(5);
redBarrier[i].active = true;
}
}
void Reactivate_Enemies()
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
arrEnem[i][j].active = true;
}
}
}
void CollideBarrier()
{
for (int i = 0; i < 3; i++)
{
if (redBarrier[i].active && enemyBullet.status == 1)
{
if (enemyBullet.x_pos >(redBarrier[i].x_pos - redBarrier[i].Bleft) && enemyBullet.x_pos<(redBarrier[i].x_pos + redBarrier[i].Bright)
&& enemyBullet.y_pos>(redBarrier[i].y_pos - redBarrier[i].BHeight) && enemyBullet.y_pos < (redBarrier[i].y_pos + redBarrier[i].BHeight))
{
if (redBarrier[i].life_points != 0)
{
redBarrier[i].life_points--;
if (redBarrier[i].life_points == 0)
{
redBarrier[i].active = false;
}
}
enemyBullet.status = 0;
}
}
}
}
void BulletBarrierCollide()
{
for (int i = 0; i < 3; i++)
{
if (redBarrier[i].active && playerBullet.status == 1)
{
if (playerBullet.x_pos >(redBarrier[i].x_pos - redBarrier[i].Bleft) && playerBullet.x_pos<(redBarrier[i].x_pos + redBarrier[i].Bright)
&& playerBullet.y_pos>(redBarrier[i].y_pos - redBarrier[i].BHeight) && playerBullet.y_pos < (redBarrier[i].y_pos + redBarrier[i].BHeight))
{
playerBullet.status = 0;
}
}
}
}
void updateEnemyCount()
{
if (numAlive == 0)
{
EnemyWaveCount++;
numAlive = NUM_COLUMNS*NUM_ROWS;
Reactivate_Enemies();
Reactivate_Barriers();
setEnemy();
switch (player.health)
{
case 50:
player.health += 10;
break;
case 40:
player.health += 20;
break;
case 30:
player.health += 20;
break;
case 20:
player.health += 20;
break;
case 10:
player.health += 20;
break;
}
}
}
void EnemyReachEnd()
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active == true)
{
if (arrEnem[i][j].y_pos > redBarrier[0].y_pos - redBarrier[0].BHeight)
{
gameState = 3;
}
}
}
}
}
void Reactivate_Barriers()
{
for (int b = 0; b < 3; b++)
{
redBarrier[b].life_points = 5;
redBarrier[b].active = true;
}
}
void UpdateBarrierImages(ALLEGRO_BITMAP *SpaceBarrier[])
{
for (int i = 0; i < 3; i++)
{
if (redBarrier[i].life_points != -1)
{
redBarrier[i].CurrentImage = SpaceBarrier[redBarrier[i].life_points];
}
if (redBarrier[i].life_points == 5)
redBarrier[i].CurrentImage = SpaceBarrier[4];
if (redBarrier[i].life_points == 4)
redBarrier[i].CurrentImage = SpaceBarrier[3];
if (redBarrier[i].life_points == 3)
redBarrier[i].CurrentImage = SpaceBarrier[2];
if (redBarrier[i].life_points == 2)
redBarrier[i].CurrentImage = SpaceBarrier[1];
if (redBarrier[i].life_points == 1)
redBarrier[i].CurrentImage = SpaceBarrier[0];
}
}
void DrawAnimation(ALLEGRO_BITMAP *pic, int &x)
{
al_draw_bitmap(pic, x, 350, 0);
if (gameState == 1)
{
x = x + 6;
if(x > width - 20)
gameState = 2;
}
else if (gameState == 3)
{
x = x + 3;
if (x > width - 5)
x = -10;
}
}
void readScores()
{
- ifstream myfile("scores.txt");
+ ifstream myfile(confdir+"darthinvaders-scores.txt");
string line;
Highscores temp;
int count = 0;
while (myfile.good())
{
getline(myfile, line);
//now you must split the line. Easiest way to do it is like this:
temp.score = stoi(line.substr(0, (int)line.find(' '))); //get substring from index 0 to space and convert it to integer
temp.name = line.substr((int)line.find(' ') + 1); //get substring from space and to the end of the string
arrScores[count].name = temp.name;
arrScores[count].score = temp.score;
count++;
}
myfile.close();
lowScore = arrScores[9].score;
}
void writeScore()
{
int pos = 9 - 1;
int i = 0;
while (score > arrScores[pos].score && pos >= 0)
{
arrScores[pos + 1] = arrScores[pos];
pos--;
}
arrScores[pos + 1].score = score;
arrScores[pos + 1].name = nameString;
- ofstream OutputFile("scores.txt");
+ ofstream OutputFile(confdir+"darthinvaders-scores.txt");
for (i = 0; i < 9; i++)
{
if (arrScores[i].name == "")
arrScores[i].name = "NO NAME";
OutputFile << arrScores[i].score << " " << arrScores[i].name << endl;
}
if (arrScores[i].name == "")
arrScores[i].name = "NO NAME";
OutputFile << arrScores[i].score << " " << arrScores[i].name;
OutputFile.close();
}
void gameRestart()
{
gameState = 1;
readScores(); //reads in scores from textfile
Reactivate_Enemies();
Reactivate_Barriers();
setEnemy();
player.active = true;
player.health = 60;
score = 0;
numAlive = NUM_COLUMNS*NUM_ROWS;
EnemyWaveCount = 0;
input = 0; //count variable to ensure action occurs only once
output = 0; //count variable to ensure action occurs only once
x = 20; //initial position of animated ship *nameString;
startAnim = false;
isHighscore = false; //will be true if user's score is higher than lowest highscore //value of lowest highscore
}
diff --git a/debian/patches/add-License-file-(not-bumping-version) b/debian/patches/add-License-file-(not-bumping-version)
deleted file mode 100644
index b23ed12..0000000
--- a/debian/patches/add-License-file-(not-bumping-version)
+++ /dev/null
@@ -1,1247 +0,0 @@
-Description: Add license file
- movaid blesses us with the MIT license.
- It's in GIT, but i'm going to sneak it into current release here.
-
---- /dev/null
-+++ darthinvaders-1.0/LICENSE
-@@ -0,0 +1,1240 @@
-+
-+
-+
-+
-+
-+
-+<!DOCTYPE html>
-+<html lang="en" >
-+ <head>
-+ <meta charset="utf-8">
-+ <link rel="dns-prefetch" href="https://github.githubassets.com">
-+ <link rel="dns-prefetch" href="https://avatars.githubusercontent.com">
-+ <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
-+ <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
-+
-+
-+
-+ <link crossorigin="anonymous" media="all" integrity="sha512-M9vROaxfsAZY3422CIdEbsk6liW6dGhd16Eyq0j7RfCIaolnh/mEoFehjJAKCH1IiRaZ15mFvtekmjD27VkKSA==" rel="stylesheet" href="https://github.githubassets.com/assets/frameworks-33dbd139ac5fb00658df8db60887446e.css" />
-+ <link crossorigin="anonymous" media="all" integrity="sha512-kmEfvg6LUCYXpO1qfMZ2hiRpxjas8ZxIwRYYnAz+el55oZvFMiT4mu8hE0vQotZqh2iFuZeDT2c+94U/n/B8Ig==" rel="stylesheet" href="https://github.githubassets.com/assets/site-92611fbe0e8b502617a4ed6a7cc67686.css" />
-+ <link crossorigin="anonymous" media="all" integrity="sha512-jTdvoiCezBiH9yw26ZDI7d23d6fazvCUVOTMSiazFi9Ag0lnqFGqlnrhp+Amz6ztXz95V+0IbSHzqqNl6w70lw==" rel="stylesheet" href="https://github.githubassets.com/assets/behaviors-8d376fa2209ecc1887f72c36e990c8ed.css" />
-+
-+
-+
-+ <link crossorigin="anonymous" media="all" integrity="sha512-0FwAIs8toleBWC3026Xm8fGke0XmoKbp6abcEwqPGqG3rLP7jvcgkNHK7qo6nOQZRqFsTtlbx7BzhVtmmQoMqA==" rel="stylesheet" href="https://github.githubassets.com/assets/github-d05c0022cf2da25781582df4dba5e6f1.css" />
-+
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-CzeY4A6TiG4fGZSWZU8FxmzFFmcQFoPpArF0hkH0/J/S7UL4eed/LKEXMQXfTwiG5yEJBI+9BdKG8KQJNbhcIQ==" type="application/javascript" src="https://github.githubassets.com/assets/environment-0b3798e0.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-oRkKscjEH1b2bAAJURl5E/Q7RFJnHgCDjcbhNpHzxJ3s5G5I2oNZc9b4KrHgOG2D8rpkXsPu88B5p8lOCe8f6Q==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-frameworks-a1190ab1.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-xs/XWtVY6sgxCZKGLtrGrcsYgDgR0UR1Nx14ivzvJC0S8ZEB7BAxAOBDF8xFrtPq/6Vek9n2A2A8mx/odP+fMg==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-vendor-c6cfd75a.js"></script>
-+
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-SveOmLp54+YHoE4x6hQ9iZN4kK1zbBj16fT3e/jr+qa68YqIXaRpF3dsjaCuqt7NSZEgURBJmEeF6skZyXdfQg==" type="application/javascript" src="https://github.githubassets.com/assets/behaviors-4af78e98.js"></script>
-+
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-PNWgI0klII5M3oY8I2gz0PscHM2y5Kssqx1GvudT71XK8SfIsY1xp8W8niacw7vwY9p9ghxl7Gs8IPf4VTGPlg==" type="application/javascript" data-module-id="./chunk-codemirror.js" data-src="https://github.githubassets.com/assets/chunk-codemirror-3cd5a023.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-aEeAsfpL9cBt2DYP2NfaqKLyYLkN4BS+/ikvLHM+abhqZsoNmd3Wxqwu6TGp7Pf/vqvvGeL26/NswwMkS1WwQg==" type="application/javascript" data-module-id="./chunk-color-modes.js" data-src="https://github.githubassets.com/assets/chunk-color-modes-684780b1.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-zaLwmM/bgGhKnDy4YPvbl92aZ1yaF7e3A+bjdCoWZSCls/co65VBCDE+blnNwcfc61E/cQHJiFDokMdSGmTYxQ==" type="application/javascript" data-module-id="./chunk-contributions-spider-graph.js" data-src="https://github.githubassets.com/assets/chunk-contributions-spider-graph-cda2f098.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-6j/oSF+kbW+yetNPvI684VzAu9pzug6Vj2h+3u1LdCuRhR4jnuiHZfeQKls3nxcT/S3H+oIt7FtigE/aeoj+gg==" type="application/javascript" data-module-id="./chunk-drag-drop.js" data-src="https://github.githubassets.com/assets/chunk-drag-drop-ea3fe848.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-ymxyvUviKFi+en2si3ZTyY4YCLRKlk0cKK/ngD9ir8xoeH44pCE1I4MBRQE5PcErmUJMhlcAk3+pgwHB7VcseA==" type="application/javascript" data-module-id="./chunk-edit.js" data-src="https://github.githubassets.com/assets/chunk-edit-ca6c72bd.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-aiqMIGGZGo8AQMjcoImKPMTsZVVRl6htCSY7BpRmpGPG/AF+Wq+P/Oj/dthWQOIk9cCNMPEas7O2zAR6oqn0tA==" type="application/javascript" data-module-id="./chunk-emoji-picker-element.js" data-src="https://github.githubassets.com/assets/chunk-emoji-picker-element-6a2a8c20.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-DAk56F8lz8k6kg6vf15oE4tu4MTIPDT9DUo3VwO8SLYyb3ws4QU433BG7eVXOS50wzl7dUuMFRfTP1rHlHi45g==" type="application/javascript" data-module-id="./chunk-filter-input.js" data-src="https://github.githubassets.com/assets/chunk-filter-input-0c0939e8.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-j5Eltv6XYkPt7XVCMWLH6qhNBoFOzxXLIsaoffjjTl2fw/sXVfluH+EGE5dYJPEBwsmqK0LenheRi9hmNcWnCA==" type="application/javascript" data-module-id="./chunk-insights-graph.js" data-src="https://github.githubassets.com/assets/chunk-insights-graph-8f9125b6.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-QM/lwlNqhmQdgdKAm7AmH4UPduFZRVyImbYS6vxhjNHvktVItzONWSYyvdRP83nsaNC1HZVeWmKSFh6uNHcF5A==" type="application/javascript" data-module-id="./chunk-jump-to.js" data-src="https://github.githubassets.com/assets/chunk-jump-to-40cfe5c2.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-ma0OOy3nj0c1cqBx0BkcmIFsLqcSZ+MIukQxyEFM/OWTzZpG+QMgOoWPAHZz43M6fyjAUG1jH6c/6LPiiKPCyw==" type="application/javascript" data-module-id="./chunk-profile-pins-element.js" data-src="https://github.githubassets.com/assets/chunk-profile-pins-element-99ad0e3b.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-9WNXtB07IyWypiPmkuucspwog4mme9q5GKGMSgd7FI0DPimmg/pEw+aaAofFV1vuWMt9I8H5QpsVtlbHGg1YBA==" type="application/javascript" data-module-id="./chunk-runner-groups.js" data-src="https://github.githubassets.com/assets/chunk-runner-groups-f56357b4.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-JoWpXsdKsRKFyspZP0lsV/mUnqLhErMvFLeq7PwLuptuR0JgHOv5NMWIeBqqWHuWmhIltMifR+/rEjO553Raug==" type="application/javascript" data-module-id="./chunk-sortable-behavior.js" data-src="https://github.githubassets.com/assets/chunk-sortable-behavior-2685a95e.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-WK8VXw3lfUQ/VRW0zlgKPhcMUqH0uTnB/KzePUPdZhCm/HpxfXXHKTGvj5C0Oex7+zbIM2ECzULbtTCT4ug3yg==" type="application/javascript" data-module-id="./chunk-toast.js" data-src="https://github.githubassets.com/assets/chunk-toast-58af155f.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-ZyozqjwhoIovRiwFwpwYmlQUgmIyGt5y8DgJhtiLHr9EM6f51vmXxaIIZap+ly64QSLa0zeA7DPCD6Yio2/AGA==" type="application/javascript" data-module-id="./chunk-tweetsodium.js" data-src="https://github.githubassets.com/assets/chunk-tweetsodium-672a33aa.js"></script>
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-x4kU6fFUhRRm2c+AcnGrKXfEBgPxFF8vMQ9RJQraR7T4kQEgj+3RsoU4+8FYsR359M0xSovamhNcCQlYA03c0g==" type="application/javascript" data-module-id="./chunk-user-status-submit.js" data-src="https://github.githubassets.com/assets/chunk-user-status-submit-c78914e9.js"></script>
-+
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-NeTNz6hnGg0FCgRg3dbVnu2rlVfgWvb9K0CrBjbT281Vxo0a62mmaxNquQX2jYdQNzjetGV3c9ujOyUN9gdpkg==" type="application/javascript" src="https://github.githubassets.com/assets/repositories-35e4cdcf.js"></script>
-+<script crossorigin="anonymous" defer="defer" integrity="sha512-6YrEuO32iYNb5KMQtmgbHhq0s0WRjwmRq+4jazNLn4N3mG536Be88fnil1ky87ioh9xIftv8dsfs+/OhA+3xvw==" type="application/javascript" src="https://github.githubassets.com/assets/diffs-e98ac4b8.js"></script>
-+
-+ <meta name="viewport" content="width=device-width">
-+
-+ <title>DarthInvaders/LICENSE at master · movaid7/DarthInvaders · GitHub</title>
-+ <meta name="description" content="A Star Wars themed, arcade space-shooter. Contribute to movaid7/DarthInvaders development by creating an account on GitHub.">
-+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
-+ <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
-+ <meta property="fb:app_id" content="1401488693436528">
-+ <meta name="apple-itunes-app" content="app-id=1477376905" />
-+ <meta name="twitter:image:src" content="https://avatars.githubusercontent.com/u/12106703?s=400&amp;v=4" /><meta name="twitter:site" content="@github" /><meta name="twitter:card" content="summary" /><meta name="twitter:title" content="movaid7/DarthInvaders" /><meta name="twitter:description" content="A Star Wars themed, arcade space-shooter. Contribute to movaid7/DarthInvaders development by creating an account on GitHub." />
-+ <meta property="og:image" content="https://avatars.githubusercontent.com/u/12106703?s=400&amp;v=4" /><meta property="og:site_name" content="GitHub" /><meta property="og:type" content="object" /><meta property="og:title" content="movaid7/DarthInvaders" /><meta property="og:url" content="https://github.com/movaid7/DarthInvaders" /><meta property="og:description" content="A Star Wars themed, arcade space-shooter. Contribute to movaid7/DarthInvaders development by creating an account on GitHub." />
-+
-+
-+
-+
-+
-+ <link rel="assets" href="https://github.githubassets.com/">
-+
-+
-+ <meta name="request-id" content="0631:3005:1332:3641B:606D75D9" data-pjax-transient="true"/><meta name="html-safe-nonce" content="dcca6a3e8b9620760db24c70f745e6f9337556098761a6776d2bad5718ac0ee4" data-pjax-transient="true"/><meta name="visitor-payload" content="eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiIwNjMxOjMwMDU6MTMzMjozNjQxQjo2MDZENzVEOSIsInZpc2l0b3JfaWQiOiIxNjYwMTkzMTgyOTUyODE0MDQxIiwicmVnaW9uX2VkZ2UiOiJhcC1zb3V0aGVhc3QtMiIsInJlZ2lvbl9yZW5kZXIiOiJhcC1zb3V0aGVhc3QtMiJ9" data-pjax-transient="true"/><meta name="visitor-hmac" content="0fd14279b3520cbfebd586b2ee862b9b128c5107730211d7fec924d966a1117b" data-pjax-transient="true"/>
-+
-+ <meta name="hovercard-subject-tag" content="repository:55353687" data-pjax-transient>
-+
-+
-+ <meta name="github-keyboard-shortcuts" content="repository,source-code" data-pjax-transient="true" />
-+
-+
-+
-+ <meta name="selected-link" value="repo_source" data-pjax-transient>
-+
-+ <meta name="google-site-verification" content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY">
-+ <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
-+ <meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
-+ <meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
-+
-+ <meta name="octolytics-host" content="collector.githubapp.com" /><meta name="octolytics-app-id" content="github" /><meta name="octolytics-event-url" content="https://collector.githubapp.com/github-external/browser_event" />
-+
-+ <meta name="analytics-location" content="/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show" data-pjax-transient="true" />
-+
-+
-+
-+
-+
-+ <meta name="optimizely-datafile" content="{&quot;version&quot;: &quot;4&quot;, &quot;rollouts&quot;: [], &quot;typedAudiences&quot;: [], &quot;anonymizeIP&quot;: true, &quot;projectId&quot;: &quot;16737760170&quot;, &quot;variables&quot;: [], &quot;featureFlags&quot;: [], &quot;experiments&quot;: [], &quot;audiences&quot;: [{&quot;conditions&quot;: &quot;[\&quot;or\&quot;, {\&quot;match\&quot;: \&quot;exact\&quot;, \&quot;name\&quot;: \&quot;$opt_dummy_attribute\&quot;, \&quot;type\&quot;: \&quot;custom_attribute\&quot;, \&quot;value\&quot;: \&quot;$opt_dummy_value\&quot;}]&quot;, &quot;id&quot;: &quot;$opt_dummy_audience&quot;, &quot;name&quot;: &quot;Optimizely-Generated Audience for Backwards Compatibility&quot;}], &quot;groups&quot;: [{&quot;policy&quot;: &quot;random&quot;, &quot;trafficAllocation&quot;: [{&quot;entityId&quot;: &quot;20065350824&quot;, &quot;endOfRange&quot;: 10000}], &quot;experiments&quot;: [{&quot;status&quot;: &quot;Running&quot;, &quot;audienceIds&quot;: [], &quot;variations&quot;: [{&quot;variables&quot;: [], &quot;id&quot;: &quot;20061181493&quot;, &quot;key&quot;: &quot;control&quot;}, {&quot;variables&quot;: [], &quot;id&quot;: &quot;20046091568&quot;, &quot;key&quot;: &quot;most_popular&quot;}], &quot;id&quot;: &quot;20065350824&quot;, &quot;key&quot;: &quot;pricing_page&quot;, &quot;layerId&quot;: &quot;20047761391&quot;, &quot;trafficAllocation&quot;: [{&quot;entityId&quot;: &quot;20061181493&quot;, &quot;endOfRange&quot;: 5000}, {&quot;entityId&quot;: &quot;20046091568&quot;, &quot;endOfRange&quot;: 10000}], &quot;forcedVariations&quot;: {&quot;890b7acea08c1711c74beff6bd78b5e7&quot;: &quot;control&quot;, &quot;235830406.1616679911&quot;: &quot;control&quot;, &quot;1542844758.1617741899&quot;: &quot;control&quot;, &quot;f7d5ee986ba8bcc155e2393401c920f7&quot;: &quot;most_popular&quot;, &quot;2022915492.1615428687&quot;: &quot;most_popular&quot;, &quot;1006574531.1617036769&quot;: &quot;control&quot;, &quot;1693726779.1607624005&quot;: &quot;most_popular&quot;, &quot;b3d9f4f9910bc46c43a8d65ab83d8570&quot;: &quot;most_popular&quot;, &quot;1800070736.1616613011&quot;: &quot;control&quot;}}], &quot;id&quot;: &quot;19972601768&quot;}], &quot;attributes&quot;: [{&quot;id&quot;: &quot;16822470375&quot;, &quot;key&quot;: &quot;user_id&quot;}, {&quot;id&quot;: &quot;17143601254&quot;, &quot;key&quot;: &quot;spammy&quot;}, {&quot;id&quot;: &quot;18175660309&quot;, &quot;key&quot;: &quot;organization_plan&quot;}, {&quot;id&quot;: &quot;18813001570&quot;, &quot;key&quot;: &quot;is_logged_in&quot;}, {&quot;id&quot;: &quot;19073851829&quot;, &quot;key&quot;: &quot;geo&quot;}], &quot;botFiltering&quot;: false, &quot;accountId&quot;: &quot;16737760170&quot;, &quot;events&quot;: [{&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;17911811441&quot;, &quot;key&quot;: &quot;hydro_click.dashboard.teacher_toolbox_cta&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18124116703&quot;, &quot;key&quot;: &quot;submit.organizations.complete_sign_up&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18145892387&quot;, &quot;key&quot;: &quot;no_metric.tracked_outside_of_optimizely&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18178755568&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.add_repo&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18180553241&quot;, &quot;key&quot;: &quot;submit.repository_imports.create&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18186103728&quot;, &quot;key&quot;: &quot;click.help.learn_more_about_repository_creation&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18188530140&quot;, &quot;key&quot;: &quot;test_event.do_not_use_in_production&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18191963644&quot;, &quot;key&quot;: &quot;click.empty_org_repo_cta.transfer_repository&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18195612788&quot;, &quot;key&quot;: &quot;click.empty_org_repo_cta.import_repository&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18210945499&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.invite_members&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18211063248&quot;, &quot;key&quot;: &quot;click.empty_org_repo_cta.create_repository&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18215721889&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.update_profile&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18224360785&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.dismiss&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18234832286&quot;, &quot;key&quot;: &quot;submit.organization_activation.complete&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18252392383&quot;, &quot;key&quot;: &quot;submit.org_repository.create&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18257551537&quot;, &quot;key&quot;: &quot;submit.org_member_invitation.create&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18259522260&quot;, &quot;key&quot;: &quot;submit.organization_profile.update&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18564603625&quot;, &quot;key&quot;: &quot;view.classroom_select_organization&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18568612016&quot;, &quot;key&quot;: &quot;click.classroom_sign_in_click&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18572592540&quot;, &quot;key&quot;: &quot;view.classroom_name&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18574203855&quot;, &quot;key&quot;: &quot;click.classroom_create_organization&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18582053415&quot;, &quot;key&quot;: &quot;click.classroom_select_organization&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18589463420&quot;, &quot;key&quot;: &quot;click.classroom_create_classroom&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18591323364&quot;, &quot;key&quot;: &quot;click.classroom_create_first_classroom&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18591652321&quot;, &quot;key&quot;: &quot;click.classroom_grant_access&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18607131425&quot;, &quot;key&quot;: &quot;view.classroom_creation&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18831680583&quot;, &quot;key&quot;: &quot;upgrade_account_plan&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;19064064515&quot;, &quot;key&quot;: &quot;click.signup&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19075373687&quot;, &quot;key&quot;: &quot;click.view_account_billing_page&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19077355841&quot;, &quot;key&quot;: &quot;click.dismiss_signup_prompt&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;19079713938&quot;, &quot;key&quot;: &quot;click.contact_sales&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;19120963070&quot;, &quot;key&quot;: &quot;click.compare_account_plans&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;19151690317&quot;, &quot;key&quot;: &quot;click.upgrade_account_cta&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19424193129&quot;, &quot;key&quot;: &quot;click.open_account_switcher&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19520330825&quot;, &quot;key&quot;: &quot;click.visit_account_profile&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19540970635&quot;, &quot;key&quot;: &quot;click.switch_account_context&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19730198868&quot;, &quot;key&quot;: &quot;submit.homepage_signup&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19820830627&quot;, &quot;key&quot;: &quot;click.homepage_signup&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;19988571001&quot;, &quot;key&quot;: &quot;click.create_enterprise_trial&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;20036538294&quot;, &quot;key&quot;: &quot;click.create_organization_team&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;20040653299&quot;, &quot;key&quot;: &quot;click.input_enterprise_trial_form&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;20062030003&quot;, &quot;key&quot;: &quot;click.continue_with_team&quot;}, {&quot;experimentIds&quot;: [&quot;20065350824&quot;], &quot;id&quot;: &quot;20068947153&quot;, &quot;key&quot;: &quot;click.create_organization_free&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;20086636658&quot;, &quot;key&quot;: &quot;click.signup_continue.username&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;20091648988&quot;, &quot;key&quot;: &quot;click.signup_continue.create_account&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;20103637615&quot;, &quot;key&quot;: &quot;click.signup_continue.email&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;20111574253&quot;, &quot;key&quot;: &quot;click.signup_continue.password&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;20120044111&quot;, &quot;key&quot;: &quot;view.pricing_page&quot;}], &quot;revision&quot;: &quot;579&quot;}" />
-+ <!-- To prevent page flashing, the optimizely JS needs to be loaded in the
-+ <head> tag before the DOM renders -->
-+ <script crossorigin="anonymous" defer="defer" integrity="sha512-pYsZ5nv4Ik2oB39Lk84n9CLvbtMKb2uANcvFiEMMHva18PyfI08ZSA8xKPFF1l3BEHRDxpEdl8kU+vssPUqcGQ==" type="application/javascript" src="https://github.githubassets.com/assets/optimizely-a58b19e6.js"></script>
-+
-+
-+
-+
-+
-+ <meta name="hostname" content="github.com">
-+ <meta name="user-login" content="">
-+
-+
-+ <meta name="expected-hostname" content="github.com">
-+
-+
-+ <meta name="enabled-features" content="MARKETPLACE_PENDING_INSTALLATIONS,AUTOCOMPLETE_EMOJIS_IN_MARKDOWN_EDITOR">
-+
-+ <meta http-equiv="x-pjax-version" content="67bbc042418f6a256b11b2f3920db9a66fc65bb318008632c59d777760a33a61">
-+
-+
-+
-+ <meta name="go-import" content="github.com/movaid7/DarthInvaders git https://github.com/movaid7/DarthInvaders.git">
-+
-+ <meta name="octolytics-dimension-user_id" content="12106703" /><meta name="octolytics-dimension-user_login" content="movaid7" /><meta name="octolytics-dimension-repository_id" content="55353687" /><meta name="octolytics-dimension-repository_nwo" content="movaid7/DarthInvaders" /><meta name="octolytics-dimension-repository_public" content="true" /><meta name="octolytics-dimension-repository_is_fork" content="false" /><meta name="octolytics-dimension-repository_network_root_id" content="55353687" /><meta name="octolytics-dimension-repository_network_root_nwo" content="movaid7/DarthInvaders" />
-+
-+
-+
-+ <link rel="canonical" href="https://github.com/movaid7/DarthInvaders/blob/master/LICENSE" data-pjax-transient>
-+
-+
-+ <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
-+
-+ <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
-+
-+ <meta name="browser-optimizely-client-errors-url" content="https://api.github.com/_private/browser/optimizely_client/errors">
-+
-+ <link rel="mask-icon" href="https://github.githubassets.com/pinned-octocat.svg" color="#000000">
-+ <link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon.png">
-+ <link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon.svg">
-+
-+<meta name="theme-color" content="#1e2327">
-+
-+
-+
-+ <link rel="manifest" href="/manifest.json" crossOrigin="use-credentials">
-+
-+ </head>
-+
-+ <body class="logged-out env-production page-responsive page-blob" style="word-wrap: break-word;">
-+
-+
-+ <div class="position-relative js-header-wrapper ">
-+ <a href="#start-of-content" class="px-2 py-4 color-bg-info-inverse color-text-white show-on-focus js-skip-to-content">Skip to content</a>
-+ <span class="progress-pjax-loader width-full js-pjax-loader-bar Progress position-fixed">
-+ <span style="background-color: #79b8ff;width: 0%;" class="Progress-item progress-pjax-loader-bar "></span>
-+</span>
-+
-+
-+
-+ <header class="Header-old header-logged-out js-details-container Details position-relative f4 py-2" role="banner">
-+ <div class="container-xl d-lg-flex flex-items-center p-responsive">
-+ <div class="d-flex flex-justify-between flex-items-center">
-+ <a class="mr-4" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
-+ <svg height="32" class="octicon octicon-mark-github color-text-white" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
-+ </a>
-+
-+ <div class="d-lg-none css-truncate css-truncate-target width-fit p-2">
-+
-+
-+ </div>
-+
-+ <div class="d-flex flex-items-center">
-+ <a href="/join?ref_cta=Sign+up&amp;ref_loc=header+logged+out&amp;ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fblob%2Fshow&amp;source=header-repo"
-+ class="d-inline-block d-lg-none f5 color-text-white no-underline border color-border-tertiary rounded-2 px-2 py-1 mr-3 mr-sm-5 js-signup-redesign-control js-signup-redesign-target"
-+ data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;site header&quot;,&quot;repository_id&quot;:null,&quot;auth_type&quot;:&quot;SIGN_UP&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="873af48316581536b02594b05caf6376ad87e35b3d4be14449cb81ab75d0e756"
-+ >
-+ Sign&nbsp;up
-+ </a>
-+ <a href="/join_next?ref_cta=Sign+up&amp;ref_loc=header+logged+out&amp;ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fblob%2Fshow&amp;source=header-repo"
-+ class="d-inline-block d-lg-none f5 color-text-white no-underline border color-border-tertiary rounded-2 px-2 py-1 mr-3 mr-sm-5 js-signup-redesign-variation js-signup-redesign-target"
-+ hidden
-+ data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;site header&quot;,&quot;repository_id&quot;:null,&quot;auth_type&quot;:&quot;SIGN_UP&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="873af48316581536b02594b05caf6376ad87e35b3d4be14449cb81ab75d0e756"
-+ >
-+ Sign&nbsp;up
-+ </a>
-+
-+ <button class="btn-link d-lg-none mt-1 js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
-+ <svg height="24" class="octicon octicon-three-bars color-text-white" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z"></path></svg>
-+ </button>
-+ </div>
-+ </div>
-+
-+ <div class="HeaderMenu HeaderMenu--logged-out position-fixed top-0 right-0 bottom-0 height-fit position-lg-relative d-lg-flex flex-justify-between flex-items-center flex-auto">
-+ <div class="d-flex d-lg-none flex-justify-end border-bottom color-bg-secondary p-3">
-+ <button class="btn-link js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
-+ <svg height="24" class="octicon octicon-x color-text-secondary" viewBox="0 0 24 24" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M5.72 5.72a.75.75 0 011.06 0L12 10.94l5.22-5.22a.75.75 0 111.06 1.06L13.06 12l5.22 5.22a.75.75 0 11-1.06 1.06L12 13.06l-5.22 5.22a.75.75 0 01-1.06-1.06L10.94 12 5.72 6.78a.75.75 0 010-1.06z"></path></svg>
-+ </button>
-+ </div>
-+
-+ <nav class="mt-0 px-3 px-lg-0 mb-5 mb-lg-0" aria-label="Global">
-+ <ul class="d-lg-flex list-style-none">
-+ <li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
-+ <details class="HeaderMenu-details details-overlay details-reset width-full">
-+ <summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
-+ Why GitHub?
-+ <svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
-+ <path d="M1,1l6.2,6L13,1"></path>
-+ </svg>
-+ </summary>
-+ <div class="dropdown-menu flex-auto rounded px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
-+ <a href="/features" class="py-2 lh-condensed-ultra d-block Link--primary no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Features">Features <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a>
-+ <ul class="list-style-none f5 pb-3">
-+ <li class="edge-item-fix"><a href="/mobile" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Mobile <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/actions" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Actions <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/codespaces" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Codespaces <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/packages" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Packages <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/security" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Security <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/code-review/" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Code review <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/project-management/" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Project management <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/features/integrations" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">Integrations <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+
-+ <ul class="list-style-none mb-0 border-lg-top pt-lg-3">
-+ <li class="edge-item-fix"><a href="/sponsors" class="py-2 lh-condensed-ultra d-block no-underline Link--primary no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Sponsors">GitHub Sponsors <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/customer-stories" class="py-2 lh-condensed-ultra d-block no-underline Link--primary no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Customer stories">Customer stories<span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+ </div>
-+ </details>
-+ </li>
-+ <li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
-+ <a href="/team" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Team">Team</a>
-+ </li>
-+ <li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
-+ <a href="/enterprise" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Enterprise">Enterprise</a>
-+ </li>
-+
-+ <li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
-+ <details class="HeaderMenu-details details-overlay details-reset width-full">
-+ <summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
-+ Explore
-+ <svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
-+ <path d="M1,1l6.2,6L13,1"></path>
-+ </svg>
-+ </summary>
-+
-+ <div class="dropdown-menu flex-auto rounded px-0 pt-2 pb-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
-+ <ul class="list-style-none mb-3">
-+ <li class="edge-item-fix"><a href="/explore" class="py-2 lh-condensed-ultra d-block Link--primary no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Explore">Explore GitHub <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+
-+ <h4 class="color-text-tertiary text-normal text-mono f5 mb-2 border-lg-top pt-lg-3">Learn and contribute</h4>
-+ <ul class="list-style-none mb-3">
-+ <li class="edge-item-fix"><a href="/topics" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Topics">Topics <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/collections" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Collections">Collections <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="/trending" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Trending">Trending <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://lab.github.com/" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Learning lab">Learning Lab <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://opensource.guide" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Open source guides">Open source guides <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+
-+ <h4 class="color-text-tertiary text-normal text-mono f5 mb-2 border-lg-top pt-lg-3">Connect with others</h4>
-+ <ul class="list-style-none mb-0">
-+ <li class="edge-item-fix"><a href="https://github.com/readme" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover">The ReadME Project <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://github.com/events" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Events">Events <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://github.community" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Community forum">Community forum <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://education.github.com" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to GitHub Education">GitHub Education <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://stars.github.com" class="py-2 pb-0 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to GitHub Stars Program">GitHub Stars program <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+ </div>
-+ </details>
-+ </li>
-+
-+ <li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
-+ <a href="/marketplace" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Marketplace">Marketplace</a>
-+ </li>
-+
-+ <li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
-+ <details class="HeaderMenu-details details-overlay details-reset width-full">
-+ <summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
-+ Pricing
-+ <svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
-+ <path d="M1,1l6.2,6L13,1"></path>
-+ </svg>
-+ </summary>
-+
-+ <div class="dropdown-menu flex-auto rounded px-0 pt-2 pb-4 mt-0 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
-+ <a href="/pricing" class="pb-2 lh-condensed-ultra d-block Link--primary no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Pricing">Plans <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a>
-+
-+ <ul class="list-style-none mb-3">
-+ <li class="edge-item-fix"><a href="/pricing#feature-comparison" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Compare plans">Compare plans <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ <li class="edge-item-fix"><a href="https://enterprise.github.com/contact" class="py-2 lh-condensed-ultra d-block Link--secondary no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Contact Sales">Contact Sales <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+
-+ <ul class="list-style-none mb-0 border-lg-top pt-lg-3">
-+ <li class="edge-item-fix"><a href="https://education.github.com" class="py-2 pb-0 lh-condensed-ultra d-block no-underline Link--primary no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Education">Education <span class="Bump-link-symbol float-right text-normal color-text-tertiary pr-3">&rarr;</span></a></li>
-+ </ul>
-+ </div>
-+ </details>
-+ </li>
-+ </ul>
-+ </nav>
-+
-+ <div class="d-lg-flex flex-items-center px-3 px-lg-0 text-center text-lg-left">
-+ <div class="d-lg-flex min-width-0 mb-3 mb-lg-0">
-+ <div class="header-search flex-auto js-site-search position-relative flex-self-stretch flex-md-self-auto mb-3 mb-md-0 mr-0 mr-md-3 scoped-search site-scoped-search js-jump-to"
-+ role="combobox"
-+ aria-owns="jump-to-results"
-+ aria-label="Search or jump to"
-+ aria-haspopup="listbox"
-+ aria-expanded="false"
-+>
-+ <div class="position-relative">
-+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="55353687" data-scoped-search-url="/movaid7/DarthInvaders/search" data-owner-scoped-search-url="/users/movaid7/search" data-unscoped-search-url="/search" action="/movaid7/DarthInvaders/search" accept-charset="UTF-8" method="get">
-+ <label class="form-control input-sm header-search-wrapper p-0 js-chromeless-input-container header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center">
-+ <input type="text"
-+ class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus js-site-search-field is-clearable"
-+ data-hotkey="s,/"
-+ name="q"
-+ value=""
-+ placeholder="Search"
-+ data-unscoped-placeholder="Search GitHub"
-+ data-scoped-placeholder="Search"
-+ autocapitalize="off"
-+ aria-autocomplete="list"
-+ aria-controls="jump-to-results"
-+ aria-label="Search"
-+ data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations"
-+ spellcheck="false"
-+ autocomplete="off"
-+ >
-+ <input type="hidden" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf" value="4mV2x2RKZQSfijjF2/UIInFkaFEaL4DZYcVpna0atAuu4uDVu2+FvCRukPTjwJz3o01JbtT688GuuuFxXzs/Sw==" />
-+ <input type="hidden" class="js-site-search-type-field" name="type" >
-+ <img src="https://github.githubassets.com/images/search-key-slash.svg" alt="" class="mr-2 header-search-key-slash">
-+
-+ <div class="Box position-absolute overflow-hidden d-none jump-to-suggestions js-jump-to-suggestions-container">
-+
-+<ul class="d-none js-jump-to-suggestions-template-container">
-+
-+
-+<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-suggestion" role="option">
-+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="suggestion">
-+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
-+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
-+ </div>
-+
-+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
-+
-+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
-+ </div>
-+
-+ <div class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none js-jump-to-badge-search">
-+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
-+ In this repository
-+ </span>
-+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
-+ All GitHub
-+ </span>
-+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+
-+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
-+ Jump to
-+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+ </a>
-+</li>
-+
-+</ul>
-+
-+<ul class="d-none js-jump-to-no-results-template-container">
-+ <li class="d-flex flex-justify-center flex-items-center f5 d-none js-jump-to-suggestion p-2">
-+ <span class="color-text-secondary">No suggested jump to results</span>
-+ </li>
-+</ul>
-+
-+<ul id="jump-to-results" role="listbox" class="p-0 m-0 js-navigation-container jump-to-suggestions-results-container js-jump-to-suggestions-results-container">
-+
-+
-+<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-scoped-search d-none" role="option">
-+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="scoped_search">
-+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
-+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
-+ </div>
-+
-+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
-+
-+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
-+ </div>
-+
-+ <div class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none js-jump-to-badge-search">
-+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
-+ In this repository
-+ </span>
-+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
-+ All GitHub
-+ </span>
-+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+
-+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
-+ Jump to
-+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+ </a>
-+</li>
-+
-+
-+
-+<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-owner-scoped-search d-none" role="option">
-+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="owner_scoped_search">
-+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
-+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
-+ </div>
-+
-+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
-+
-+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
-+ </div>
-+
-+ <div class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none js-jump-to-badge-search">
-+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this user">
-+ In this user
-+ </span>
-+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
-+ All GitHub
-+ </span>
-+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+
-+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
-+ Jump to
-+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+ </a>
-+</li>
-+
-+
-+
-+<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-global-search d-none" role="option">
-+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="global_search">
-+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
-+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
-+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
-+ </div>
-+
-+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
-+
-+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
-+ </div>
-+
-+ <div class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none js-jump-to-badge-search">
-+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
-+ In this repository
-+ </span>
-+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
-+ All GitHub
-+ </span>
-+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+
-+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-tertiary px-1 color-text-tertiary ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
-+ Jump to
-+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
-+ </div>
-+ </a>
-+</li>
-+
-+
-+</ul>
-+
-+ </div>
-+ </label>
-+</form> </div>
-+</div>
-+
-+ </div>
-+
-+ <a href="/login?return_to=%2Fmovaid7%2FDarthInvaders%2Fblob%2Fmaster%2FLICENSE"
-+ class="HeaderMenu-link flex-shrink-0 no-underline mr-3"
-+ data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;site header menu&quot;,&quot;repository_id&quot;:null,&quot;auth_type&quot;:&quot;SIGN_UP&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="e41fdd0c17fdc3d7e36a92e480e4888451c824ee20cac05abf3acaa7c32dd48f"
-+ data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">
-+ Sign in
-+ </a>
-+ <a href="/join?ref_cta=Sign+up&amp;ref_loc=header+logged+out&amp;ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fblob%2Fshow&amp;source=header-repo&amp;source_repo=movaid7%2FDarthInvaders"
-+ class="HeaderMenu-link flex-shrink-0 d-inline-block no-underline border color-border-tertiary rounded px-2 py-1 js-signup-redesign-target js-signup-redesign-control"
-+ data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;site header menu&quot;,&quot;repository_id&quot;:null,&quot;auth_type&quot;:&quot;SIGN_UP&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="e41fdd0c17fdc3d7e36a92e480e4888451c824ee20cac05abf3acaa7c32dd48f"
-+ data-hydro-click="{&quot;event_type&quot;:&quot;analytics.click&quot;,&quot;payload&quot;:{&quot;category&quot;:&quot;Sign up&quot;,&quot;action&quot;:&quot;click to sign up for account&quot;,&quot;label&quot;:&quot;ref_page:/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show;ref_cta:Sign up;ref_loc:header logged out&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="7e0b031da2bf8cf127a5b5f407d781e3f162a1a39196b5e1b8ae8ec4cbf278db"
-+ >
-+ Sign up
-+ </a>
-+ <a href="/join_next?ref_cta=Sign+up&amp;ref_loc=header+logged+out&amp;ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fblob%2Fshow&amp;source=header-repo&amp;source_repo=movaid7%2FDarthInvaders"
-+ class="HeaderMenu-link flex-shrink-0 d-inline-block no-underline border color-border-tertiary rounded-1 px-2 py-1 js-signup-redesign-target js-signup-redesign-variation"
-+ hidden
-+ data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;site header menu&quot;,&quot;repository_id&quot;:null,&quot;auth_type&quot;:&quot;SIGN_UP&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="e41fdd0c17fdc3d7e36a92e480e4888451c824ee20cac05abf3acaa7c32dd48f"
-+ data-hydro-click="{&quot;event_type&quot;:&quot;analytics.click&quot;,&quot;payload&quot;:{&quot;category&quot;:&quot;Sign up&quot;,&quot;action&quot;:&quot;click to sign up for account&quot;,&quot;label&quot;:&quot;ref_page:/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show;ref_cta:Sign up;ref_loc:header logged out&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="7e0b031da2bf8cf127a5b5f407d781e3f162a1a39196b5e1b8ae8ec4cbf278db"
-+ >
-+ Sign up
-+ </a>
-+ </div>
-+ </div>
-+ </div>
-+</header>
-+
-+ </div>
-+
-+ <div id="start-of-content" class="show-on-focus"></div>
-+
-+
-+
-+
-+
-+ <div data-pjax-replace id="js-flash-container">
-+
-+
-+ <template class="js-flash-template">
-+ <div class="flash flash-full {{ className }}">
-+ <div class=" px-2" >
-+ <button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
-+ <svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
-+ </button>
-+
-+ <div>{{ message }}</div>
-+
-+ </div>
-+</div>
-+ </template>
-+</div>
-+
-+
-+
-+
-+ <include-fragment class="js-notification-shelf-include-fragment" data-base-src="https://github.com/notifications/beta/shelf"></include-fragment>
-+
-+
-+
-+
-+ <div
-+ class="application-main "
-+ data-commit-hovercards-enabled
-+ data-discussion-hovercards-enabled
-+ data-issue-and-pr-hovercards-enabled
-+ >
-+ <div itemscope itemtype="http://schema.org/SoftwareSourceCode" class="">
-+ <main id="js-repo-pjax-container" data-pjax-container >
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+ <div class="color-bg-secondary pt-3 hide-full-screen mb-5">
-+
-+ <div class="d-flex mb-3 px-3 px-md-4 px-lg-5">
-+
-+ <div class="flex-auto min-width-0 width-fit mr-3">
-+ <h1 class=" d-flex flex-wrap flex-items-center break-word f3 text-normal">
-+ <svg class="octicon octicon-repo color-text-secondary mr-2" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
-+ <span class="author flex-self-stretch" itemprop="author">
-+ <a class="url fn" rel="author" data-hovercard-type="user" data-hovercard-url="/users/movaid7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="/movaid7">movaid7</a>
-+ </span>
-+ <span class="mx-1 flex-self-stretch color-text-secondary">/</span>
-+ <strong itemprop="name" class="mr-2 flex-self-stretch">
-+ <a data-pjax="#js-repo-pjax-container" href="/movaid7/DarthInvaders">DarthInvaders</a>
-+ </strong>
-+
-+</h1>
-+
-+
-+ </div>
-+
-+ <ul class="pagehead-actions flex-shrink-0 d-none d-md-inline" style="padding: 2px 0;">
-+
-+ <li>
-+ <a class="tooltipped tooltipped-s btn btn-sm" aria-label="You must be signed in to change notification settings" rel="nofollow" data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;notification subscription menu watch&quot;,&quot;repository_id&quot;:null,&quot;auth_type&quot;:&quot;LOG_IN&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="e65e564ae17a78a739fa3e62c104e9ca91787bbe207ead9f2bbdace739f3f5d7" href="/login?return_to=%2Fmovaid7%2FDarthInvaders">
-+ <svg class="octicon octicon-bell" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path d="M8 16a2 2 0 001.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 008 16z"></path><path fill-rule="evenodd" d="M8 1.5A3.5 3.5 0 004.5 5v2.947c0 .346-.102.683-.294.97l-1.703 2.556a.018.018 0 00-.003.01l.001.006c0 .002.002.004.004.006a.017.017 0 00.006.004l.007.001h10.964l.007-.001a.016.016 0 00.006-.004.016.016 0 00.004-.006l.001-.007a.017.017 0 00-.003-.01l-1.703-2.554a1.75 1.75 0 01-.294-.97V5A3.5 3.5 0 008 1.5zM3 5a5 5 0 0110 0v2.947c0 .05.015.098.042.139l1.703 2.555A1.518 1.518 0 0113.482 13H2.518a1.518 1.518 0 01-1.263-2.36l1.703-2.554A.25.25 0 003 7.947V5z"></path></svg>
-+ Notifications
-+</a>
-+ </li>
-+
-+ <li>
-+ <a class="btn btn-sm btn-with-count tooltipped tooltipped-s" aria-label="You must be signed in to star a repository" rel="nofollow" data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;star button&quot;,&quot;repository_id&quot;:55353687,&quot;auth_type&quot;:&quot;LOG_IN&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="9f26fca26f10d412ccb4925ac879e7982e8f71c77b841f1df108d80dd9ed8eda" href="/login?return_to=%2Fmovaid7%2FDarthInvaders">
-+ <svg class="octicon octicon-star v-align-text-bottom mr-1" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25zm0 2.445L6.615 5.5a.75.75 0 01-.564.41l-3.097.45 2.24 2.184a.75.75 0 01.216.664l-.528 3.084 2.769-1.456a.75.75 0 01.698 0l2.77 1.456-.53-3.084a.75.75 0 01.216-.664l2.24-2.183-3.096-.45a.75.75 0 01-.564-.41L8 2.694v.001z"></path></svg>
-+ <span>
-+ Star
-+</span></a>
-+ <a class="social-count js-social-count" href="/movaid7/DarthInvaders/stargazers"
-+ aria-label="0 users starred this repository">
-+ 0
-+ </a>
-+
-+ </li>
-+
-+ <li>
-+ <a class="btn btn-sm btn-with-count tooltipped tooltipped-s" aria-label="You must be signed in to fork a repository" rel="nofollow" data-hydro-click="{&quot;event_type&quot;:&quot;authentication.click&quot;,&quot;payload&quot;:{&quot;location_in_page&quot;:&quot;repo details fork button&quot;,&quot;repository_id&quot;:55353687,&quot;auth_type&quot;:&quot;LOG_IN&quot;,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="a9cca8e3d8fb09f2e9436ab398943032034d699ac248e371f18a9115dd48a0a6" href="/login?return_to=%2Fmovaid7%2FDarthInvaders">
-+ <svg class="octicon octicon-repo-forked" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M5 3.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm0 2.122a2.25 2.25 0 10-1.5 0v.878A2.25 2.25 0 005.75 8.5h1.5v2.128a2.251 2.251 0 101.5 0V8.5h1.5a2.25 2.25 0 002.25-2.25v-.878a2.25 2.25 0 10-1.5 0v.878a.75.75 0 01-.75.75h-4.5A.75.75 0 015 6.25v-.878zm3.75 7.378a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm3-8.75a.75.75 0 100-1.5.75.75 0 000 1.5z"></path></svg>
-+ Fork
-+</a>
-+ <a href="/movaid7/DarthInvaders/network/members" class="social-count"
-+ aria-label="0 users forked this repository">
-+ 0
-+ </a>
-+ </li>
-+</ul>
-+
-+ </div>
-+
-+<nav aria-label="Repository" data-pjax="#js-repo-pjax-container" class="js-repo-nav js-sidenav-container-pjax js-responsive-underlinenav overflow-hidden UnderlineNav px-3 px-md-4 px-lg-5 color-bg-secondary">
-+ <ul class="UnderlineNav-body list-style-none "> <li class="d-flex">
-+ <a class="js-selected-navigation-item selected UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i0code-tab" data-hotkey="g c" data-ga-click="Repository, Navigation click, Code tab" aria-current="page" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages repo_deployments /movaid7/DarthInvaders" href="/movaid7/DarthInvaders">
-+ <svg class="octicon octicon-code UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M4.72 3.22a.75.75 0 011.06 1.06L2.06 8l3.72 3.72a.75.75 0 11-1.06 1.06L.47 8.53a.75.75 0 010-1.06l4.25-4.25zm6.56 0a.75.75 0 10-1.06 1.06L13.94 8l-3.72 3.72a.75.75 0 101.06 1.06l4.25-4.25a.75.75 0 000-1.06l-4.25-4.25z"></path></svg>
-+ <span data-content="Code">Code</span>
-+ <span title="Not available" class="Counter "></span>
-+</a> </li>
-+ <li class="d-flex">
-+ <a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i1issues-tab" data-hotkey="g i" data-ga-click="Repository, Navigation click, Issues tab" data-selected-links="repo_issues repo_labels repo_milestones /movaid7/DarthInvaders/issues" href="/movaid7/DarthInvaders/issues">
-+ <svg class="octicon octicon-issue-opened UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm9 3a1 1 0 11-2 0 1 1 0 012 0zm-.25-6.25a.75.75 0 00-1.5 0v3.5a.75.75 0 001.5 0v-3.5z"></path></svg>
-+ <span data-content="Issues">Issues</span>
-+ <span title="0" hidden="hidden" class="Counter ">0</span>
-+</a> </li>
-+ <li class="d-flex">
-+ <a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i2pull-requests-tab" data-hotkey="g p" data-ga-click="Repository, Navigation click, Pull requests tab" data-selected-links="repo_pulls checks /movaid7/DarthInvaders/pulls" href="/movaid7/DarthInvaders/pulls">
-+ <svg class="octicon octicon-git-pull-request UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"></path></svg>
-+ <span data-content="Pull requests">Pull requests</span>
-+ <span title="0" hidden="hidden" class="Counter ">0</span>
-+</a> </li>
-+ <li class="d-flex">
-+ <a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i3actions-tab" data-hotkey="g a" data-ga-click="Repository, Navigation click, Actions tab" data-selected-links="repo_actions /movaid7/DarthInvaders/actions" href="/movaid7/DarthInvaders/actions">
-+ <svg class="octicon octicon-play UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zM6.379 5.227A.25.25 0 006 5.442v5.117a.25.25 0 00.379.214l4.264-2.559a.25.25 0 000-.428L6.379 5.227z"></path></svg>
-+ <span data-content="Actions">Actions</span>
-+ <span title="Not available" class="Counter "></span>
-+</a> </li>
-+ <li class="d-flex">
-+ <a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i4projects-tab" data-hotkey="g b" data-ga-click="Repository, Navigation click, Projects tab" data-selected-links="repo_projects new_repo_project repo_project /movaid7/DarthInvaders/projects" href="/movaid7/DarthInvaders/projects">
-+ <svg class="octicon octicon-project UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
-+ <span data-content="Projects">Projects</span>
-+ <span title="0" hidden="hidden" class="Counter ">0</span>
-+</a> </li>
-+ <li class="d-flex">
-+ <a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i5security-tab" data-hotkey="g s" data-ga-click="Repository, Navigation click, Security tab" data-selected-links="security overview alerts policy token_scanning code_scanning /movaid7/DarthInvaders/security" href="/movaid7/DarthInvaders/security">
-+ <svg class="octicon octicon-shield UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.467.133a1.75 1.75 0 011.066 0l5.25 1.68A1.75 1.75 0 0115 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.7 1.7 0 01-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 011.217-1.667l5.25-1.68zm.61 1.429a.25.25 0 00-.153 0l-5.25 1.68a.25.25 0 00-.174.238V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297a.2.2 0 00.154 0c2.245-.956 3.582-2.104 4.366-3.298C13.225 9.666 13.5 8.36 13.5 7V3.48a.25.25 0 00-.174-.237l-5.25-1.68zM9 10.5a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.75a.75.75 0 10-1.5 0v3a.75.75 0 001.5 0v-3z"></path></svg>
-+ <span data-content="Security">Security</span>
-+ <include-fragment src="/movaid7/DarthInvaders/security/overall-count" accept="text/fragment+html"></include-fragment>
-+</a> </li>
-+ <li class="d-flex">
-+ <a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="i6insights-tab" data-ga-click="Repository, Navigation click, Insights tab" data-selected-links="repo_graphs repo_contributors dependency_graph dependabot_updates pulse people community /movaid7/DarthInvaders/pulse" href="/movaid7/DarthInvaders/pulse">
-+ <svg class="octicon octicon-graph UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 1.75a.75.75 0 00-1.5 0v12.5c0 .414.336.75.75.75h14.5a.75.75 0 000-1.5H1.5V1.75zm14.28 2.53a.75.75 0 00-1.06-1.06L10 7.94 7.53 5.47a.75.75 0 00-1.06 0L3.22 8.72a.75.75 0 001.06 1.06L7 7.06l2.47 2.47a.75.75 0 001.06 0l5.25-5.25z"></path></svg>
-+ <span data-content="Insights">Insights</span>
-+ <span title="Not available" class="Counter "></span>
-+</a> </li>
-+</ul>
-+ <div style="visibility:hidden;" class="UnderlineNav-actions js-responsive-underlinenav-overflow position-absolute pr-3 pr-md-4 pr-lg-5 right-0"> <details class="details-overlay details-reset position-relative">
-+ <summary role="button"> <div class="UnderlineNav-item mr-0 border-0">
-+ <svg class="octicon octicon-kebab-horizontal" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path></svg>
-+ <span class="sr-only">More</span>
-+ </div>
-+</summary>
-+ <div> <details-menu role="menu" class="dropdown-menu dropdown-menu-sw ">
-+
-+ <ul>
-+ <li data-menu-item="i0code-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders" href="/movaid7/DarthInvaders">
-+ Code
-+</a> </li>
-+ <li data-menu-item="i1issues-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders/issues" href="/movaid7/DarthInvaders/issues">
-+ Issues
-+</a> </li>
-+ <li data-menu-item="i2pull-requests-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders/pulls" href="/movaid7/DarthInvaders/pulls">
-+ Pull requests
-+</a> </li>
-+ <li data-menu-item="i3actions-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders/actions" href="/movaid7/DarthInvaders/actions">
-+ Actions
-+</a> </li>
-+ <li data-menu-item="i4projects-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders/projects" href="/movaid7/DarthInvaders/projects">
-+ Projects
-+</a> </li>
-+ <li data-menu-item="i5security-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders/security" href="/movaid7/DarthInvaders/security">
-+ Security
-+</a> </li>
-+ <li data-menu-item="i6insights-tab" hidden>
-+ <a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /movaid7/DarthInvaders/pulse" href="/movaid7/DarthInvaders/pulse">
-+ Insights
-+</a> </li>
-+ </ul>
-+
-+</details-menu></div>
-+</details></div>
-+</nav>
-+ </div>
-+
-+
-+<div class="container-xl clearfix new-discussion-timeline px-3 px-md-4 px-lg-5">
-+ <div id="repo-content-pjax-container" class="repository-content " >
-+
-+
-+
-+
-+
-+<div>
-+
-+
-+
-+ <a class="d-none js-permalink-shortcut" data-hotkey="y" href="/movaid7/DarthInvaders/blob/0d322f68eaccea4a08754f6cbcdbaf96f2f6836c/LICENSE">Permalink</a>
-+
-+ <!-- blob contrib key: blob_contributors:v22:0b7de14a6aa8fdf42421bf647734681447c831ceea012475f0c18360909506ae -->
-+
-+ <div class="d-flex flex-items-start flex-shrink-0 pb-3 flex-wrap flex-md-nowrap flex-justify-between flex-md-justify-start">
-+
-+<div class="position-relative">
-+ <details class="details-reset details-overlay mr-0 mb-0 " id="branch-select-menu">
-+ <summary class="btn css-truncate"
-+ data-hotkey="w"
-+ title="Switch branches or tags">
-+ <svg class="octicon octicon-git-branch text-gray" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z"></path></svg>
-+ <span class="css-truncate-target" data-menu-button>master</span>
-+ <span class="dropdown-caret"></span>
-+ </summary>
-+
-+ <div class="SelectMenu">
-+ <div class="SelectMenu-modal">
-+ <header class="SelectMenu-header">
-+ <span class="SelectMenu-title">Switch branches/tags</span>
-+ <button class="SelectMenu-closeButton" type="button" data-toggle-for="branch-select-menu"><svg aria-label="Close menu" aria-hidden="false" class="octicon octicon-x" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
-+ </header>
-+
-+ <input-demux data-action="tab-container-change:input-demux#storeInput tab-container-changed:input-demux#updateInput">
-+ <tab-container class="d-flex flex-column js-branches-tags-tabs" style="min-height: 0;">
-+ <div class="SelectMenu-filter">
-+ <input data-target="input-demux.source"
-+ id="context-commitish-filter-field"
-+ class="SelectMenu-input form-control"
-+ aria-owns="ref-list-branches"
-+ data-controls-ref-menu-id="ref-list-branches"
-+ autofocus
-+ autocomplete="off"
-+ aria-label="Filter branches/tags"
-+ placeholder="Filter branches/tags"
-+ type="text"
-+ >
-+ </div>
-+
-+ <div class="SelectMenu-tabs" role="tablist" data-target="input-demux.control">
-+ <button class="SelectMenu-tab" type="button" role="tab" aria-selected="true">Branches</button>
-+ <button class="SelectMenu-tab" type="button" role="tab">Tags</button>
-+ </div>
-+
-+ <div role="tabpanel" id="ref-list-branches" data-filter-placeholder="Filter branches/tags" class="d-flex flex-column flex-auto overflow-auto" tabindex="">
-+ <ref-selector
-+ type="branch"
-+ data-targets="input-demux.sinks"
-+ data-action="
-+ input-entered:ref-selector#inputEntered
-+ tab-selected:ref-selector#tabSelected
-+ focus-list:ref-selector#focusFirstListMember
-+ "
-+ query-endpoint="/movaid7/DarthInvaders/refs"
-+
-+ cache-key="v0:1617718636.856107"
-+ current-committish="bWFzdGVy"
-+ default-branch="bWFzdGVy"
-+ name-with-owner="bW92YWlkNy9EYXJ0aEludmFkZXJz"
-+ >
-+
-+ <template data-target="ref-selector.noMatchTemplate">
-+ <div class="SelectMenu-message">Nothing to show</div>
-+ </template>
-+
-+ <!-- TODO: this max-height is necessary or else the branch list won't scroll. why? -->
-+ <div data-target="ref-selector.listContainer" role="menu" class="SelectMenu-list" style="max-height: 330px">
-+ <div class="SelectMenu-loading pt-3 pb-0" aria-label="Menu is loading">
-+ <svg style="box-sizing: content-box; color: var(--color-icon-primary);" viewBox="0 0 16 16" fill="none" width="32" height="32" class="anim-rotate">
-+ <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" />
-+ <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke" />
-+</svg>
-+ </div>
-+ </div>
-+
-+ <template data-target="ref-selector.itemTemplate">
-+ <a href="https://github.com/movaid7/DarthInvaders/blob/{{ urlEncodedRefName }}/LICENSE" class="SelectMenu-item" role="menuitemradio" rel="nofollow" aria-checked="{{ isCurrent }}" data-index="{{ index }}">
-+ <svg class="octicon octicon-check SelectMenu-icon SelectMenu-icon--check" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
-+ <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
-+ <span hidden="{{ isNotDefault }}" class="Label Label--secondary flex-self-start">default</span>
-+ </a>
-+ </template>
-+ <footer class="SelectMenu-footer"><a href="/movaid7/DarthInvaders/branches">View all branches</a></footer>
-+ </ref-selector>
-+
-+ </div>
-+
-+ <div role="tabpanel" id="tags-menu" data-filter-placeholder="Find a tag" class="d-flex flex-column flex-auto overflow-auto" tabindex="" hidden>
-+ <ref-selector
-+ type="tag"
-+ data-action="
-+ input-entered:ref-selector#inputEntered
-+ tab-selected:ref-selector#tabSelected
-+ focus-list:ref-selector#focusFirstListMember
-+ "
-+ data-targets="input-demux.sinks"
-+ query-endpoint="/movaid7/DarthInvaders/refs"
-+ cache-key="v0:1617718636.856107"
-+ current-committish="bWFzdGVy"
-+ default-branch="bWFzdGVy"
-+ name-with-owner="bW92YWlkNy9EYXJ0aEludmFkZXJz"
-+ >
-+
-+ <template data-target="ref-selector.noMatchTemplate">
-+ <div class="SelectMenu-message" data-index="{{ index }}">Nothing to show</div>
-+ </template>
-+
-+ <template data-target="ref-selector.itemTemplate">
-+ <a href="https://github.com/movaid7/DarthInvaders/blob/{{ urlEncodedRefName }}/LICENSE" class="SelectMenu-item" role="menuitemradio" rel="nofollow" aria-checked="{{ isCurrent }}" data-index="{{ index }}">
-+ <svg class="octicon octicon-check SelectMenu-icon SelectMenu-icon--check" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
-+ <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
-+ <span hidden="{{ isNotDefault }}" class="Label Label--secondary flex-self-start">default</span>
-+ </a>
-+ </template>
-+ <div data-target="ref-selector.listContainer" role="menu" class="SelectMenu-list" style="max-height: 330px">
-+ <div class="SelectMenu-loading pt-3 pb-0" aria-label="Menu is loading">
-+ <svg style="box-sizing: content-box; color: var(--color-icon-primary);" viewBox="0 0 16 16" fill="none" width="32" height="32" class="anim-rotate">
-+ <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" />
-+ <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke" />
-+</svg>
-+ </div>
-+ </div>
-+ <footer class="SelectMenu-footer"><a href="/movaid7/DarthInvaders/tags">View all tags</a></footer>
-+ </ref-selector>
-+ </div>
-+ </tab-container>
-+ </input-demux>
-+ </div>
-+</div>
-+
-+ </details>
-+
-+</div>
-+
-+ <h2 id="blob-path" class="breadcrumb flex-auto flex-self-center min-width-0 text-normal mx-2 width-full width-md-auto flex-order-1 flex-md-order-none mt-3 mt-md-0">
-+ <span class="js-repo-root text-bold"><span class="js-path-segment d-inline-block wb-break-all"><a data-pjax="true" href="/movaid7/DarthInvaders"><span>DarthInvaders</span></a></span></span><span class="separator">/</span><strong class="final-path">LICENSE</strong>
-+ </h2>
-+ <a href="/movaid7/DarthInvaders/find/master"
-+ class="js-pjax-capture-input btn mr-2 d-none d-md-block"
-+ data-pjax
-+ data-hotkey="t">
-+ Go to file
-+ </a>
-+
-+ <details id="blob-more-options-details" class="details-overlay details-reset position-relative">
-+ <summary role="button" type="button" class="btn "> <svg aria-label="More options" class="octicon octicon-kebab-horizontal" height="16" viewBox="0 0 16 16" version="1.1" width="16" role="img"><path d="M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path></svg>
-+</summary>
-+ <div> <ul class="dropdown-menu dropdown-menu-sw">
-+ <li class="d-block d-md-none">
-+ <a class="dropdown-item d-flex flex-items-baseline" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;FIND_FILE_BUTTON&quot;,&quot;repository_id&quot;:55353687,&quot;originating_url&quot;:&quot;https://github.com/movaid7/DarthInvaders/blob/master/LICENSE&quot;,&quot;user_id&quot;:null}}" data-hydro-click-hmac="95d43fe0d0f21a2308866149d0c7e9ef5137ee3e4282751bf606762e35893ccd" data-ga-click="Repository, find file, location:repo overview" data-hotkey="t" data-pjax="true" href="/movaid7/DarthInvaders/find/master">
-+ <span class="flex-auto">Go to file</span>
-+ <span class="text-small color-text-secondary" aria-hidden="true">T</span>
-+</a> </li>
-+ <li data-toggle-for="blob-more-options-details">
-+ <button type="button" data-toggle-for="jumpto-line-details-dialog" class="btn-link dropdown-item">
-+ <span class="d-flex flex-items-baseline">
-+ <span class="flex-auto">Go to line</span>
-+ <span class="text-small color-text-secondary" aria-hidden="true">L</span>
-+ </span>
-+ </button>
-+ </li>
-+ <li class="dropdown-divider" role="none"></li>
-+ <li>
-+ <clipboard-copy value="LICENSE" class="dropdown-item cursor-pointer" data-toggle-for="blob-more-options-details">
-+ Copy path
-+ </clipboard-copy>
-+ </li>
-+ <li>
-+ <clipboard-copy value="https://github.com/movaid7/DarthInvaders/blob/0d322f68eaccea4a08754f6cbcdbaf96f2f6836c/LICENSE" class="dropdown-item cursor-pointer" data-toggle-for="blob-more-options-details" >
-+ <span class="d-flex flex-items-baseline">
-+ <span class="flex-auto">Copy permalink</span>
-+ </span>
-+ </clipboard-copy>
-+ </li>
-+ </ul>
-+</div>
-+</details> </div>
-+
-+ <div class="Box mb-3 clearfix">
-+ <div class="d-flex flex-column flex-md-row">
-+ <div class="p-3 col-md-6">
-+ <svg height="32" class="octicon octicon-law color-text-primary float-left mr-2" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M12.75 2.75a.75.75 0 00-1.5 0V4.5H9.276a1.75 1.75 0 00-.985.303L6.596 5.957A.25.25 0 016.455 6H2.353a.75.75 0 100 1.5H3.93L.563 15.18a.762.762 0 00.21.88c.08.064.161.125.309.221.186.121.452.278.792.433.68.311 1.662.62 2.876.62a6.919 6.919 0 002.876-.62c.34-.155.606-.312.792-.433.15-.097.23-.158.31-.223a.75.75 0 00.209-.878L5.569 7.5h.886c.351 0 .694-.106.984-.303l1.696-1.154A.25.25 0 019.275 6h1.975v14.5H6.763a.75.75 0 000 1.5h10.474a.75.75 0 000-1.5H12.75V6h1.974c.05 0 .1.015.14.043l1.697 1.154c.29.197.633.303.984.303h.886l-3.368 7.68a.75.75 0 00.23.896c.012.009 0 0 .002 0a3.154 3.154 0 00.31.206c.185.112.45.256.79.4a7.343 7.343 0 002.855.568 7.343 7.343 0 002.856-.569c.338-.143.604-.287.79-.399a3.5 3.5 0 00.31-.206.75.75 0 00.23-.896L20.07 7.5h1.578a.75.75 0 000-1.5h-4.102a.25.25 0 01-.14-.043l-1.697-1.154a1.75 1.75 0 00-.984-.303H12.75V2.75zM2.193 15.198a5.418 5.418 0 002.557.635 5.418 5.418 0 002.557-.635L4.75 9.368l-2.557 5.83zm14.51-.024c.082.04.174.083.275.126.53.223 1.305.45 2.272.45a5.846 5.846 0 002.547-.576L19.25 9.367l-2.547 5.807z"></path></svg>
-+ <p class="text-small color-text-secondary mb-0 lh-condensed-ultra">
-+ movaid7/DarthInvaders is licensed under the
-+ </p>
-+ <h3 class="mt-0 mb-2 h4">MIT License</h3>
-+ <p class="mb-0 color-text-secondary text-small pr-2">A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.</p>
-+ </div>
-+
-+ <div class="d-flex px-3 col-md-6 flex-column flex-sm-row pb-sm-3">
-+ <div class="pb-3 col-sm-4 pt-md-2">
-+ <h4 class="mt-1 mb-2 h5">Permissions</h4>
-+ <ul class="list-style-none">
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-check color-text-success ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
-+ <span class="v-align-middle" title="The licensed material and derivatives may be used for commercial purposes.">
-+ Commercial use
-+ </span>
-+ </li>
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-check color-text-success ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
-+ <span class="v-align-middle" title="The licensed material may be modified.">
-+ Modification
-+ </span>
-+ </li>
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-check color-text-success ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
-+ <span class="v-align-middle" title="The licensed material may be distributed.">
-+ Distribution
-+ </span>
-+ </li>
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-check color-text-success ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
-+ <span class="v-align-middle" title="The licensed material may be used and modified in private.">
-+ Private use
-+ </span>
-+ </li>
-+ </ul>
-+ </div>
-+ <div class="pb-3 col-sm-4 pt-md-2">
-+ <h4 class="mt-1 mb-2 h5">Limitations</h4>
-+ <ul class="list-style-none">
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-x color-text-danger ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
-+ <span class="v-align-middle" title="This license includes a limitation of liability.">
-+ Liability
-+ </span>
-+ </li>
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-x color-text-danger ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
-+ <span class="v-align-middle" title="This license explicitly states that it does NOT provide any warranty.">
-+ Warranty
-+ </span>
-+ </li>
-+ </ul>
-+ </div>
-+ <div class="pb-3 col-sm-4 pt-md-2">
-+ <h4 class="mt-1 mb-2 h5">Conditions</h4>
-+ <ul class="list-style-none">
-+ <li class="text-small pl-3">
-+ <svg width="13" class="octicon octicon-info color-text-link ml-n3 v-align-middle" viewBox="0 0 16 16" version="1.1" height="13" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z"></path></svg>
-+ <span class="v-align-middle" title="A copy of the license and copyright notice must be included with the licensed material.">
-+ License and copyright notice
-+ </span>
-+ </li>
-+ </ul>
-+ </div>
-+ </div>
-+ </div>
-+ <p class="color-text-secondary text-small mb-0 border-top col-12 float-left p-2 px-sm-3">
-+ This is not legal advice.
-+ <a href="https://docs.github.com/articles/licensing-a-repository/#disclaimer">Learn more about repository licenses</a>.
-+ </p>
-+</div>
-+
-+
-+
-+ <div class="Box d-flex flex-column flex-shrink-0 mb-3">
-+ <include-fragment src="/movaid7/DarthInvaders/contributors/master/LICENSE" class="commit-loader">
-+ <div class="Box-header Box-header--blue d-flex flex-items-center">
-+ <div class="Skeleton avatar avatar-user flex-shrink-0 ml-n1 mr-n1 mt-n1 mb-n1" style="width:24px;height:24px;"></div>
-+ <div class="Skeleton Skeleton--text col-5 ml-2">&nbsp;</div>
-+ </div>
-+
-+ <div class="Box-body d-flex flex-items-center" >
-+ <div class="Skeleton Skeleton--text col-1">&nbsp;</div>
-+ <span class="color-text-danger h6 loader-error">Cannot retrieve contributors at this time</span>
-+ </div>
-+</include-fragment> </div>
-+
-+
-+
-+
-+
-+
-+
-+ <div class="Box mt-3 position-relative
-+ ">
-+
-+<div class="Box-header py-2 d-flex flex-column flex-shrink-0 flex-md-row flex-md-items-center">
-+ <div class="text-mono f6 flex-auto pr-3 flex-order-2 flex-md-order-1 mt-2 mt-md-0">
-+
-+ 21 lines (17 sloc)
-+ <span class="file-info-divider"></span>
-+ 1.04 KB
-+ </div>
-+
-+ <div class="d-flex py-1 py-md-0 flex-auto flex-order-1 flex-md-order-2 flex-sm-grow-0 flex-justify-between">
-+
-+ <div class="BtnGroup">
-+ <a href="/movaid7/DarthInvaders/raw/master/LICENSE" id="raw-url" role="button" class="btn btn-sm BtnGroup-item ">Raw</a>
-+ <a href="/movaid7/DarthInvaders/blame/master/LICENSE" data-hotkey="b" role="button" class="btn js-update-url-with-hash btn-sm BtnGroup-item ">Blame</a>
-+ </div>
-+
-+ <div>
-+ <a class="btn-octicon tooltipped tooltipped-nw js-remove-unless-platform"
-+ data-platforms="windows,mac"
-+ href="https://desktop.github.com"
-+ aria-label="Open this file in GitHub Desktop"
-+ data-ga-click="Repository, open with desktop">
-+ <svg class="octicon octicon-device-desktop" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 2.5h12.5a.25.25 0 01.25.25v7.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25v-7.5a.25.25 0 01.25-.25zM14.25 1H1.75A1.75 1.75 0 000 2.75v7.5C0 11.216.784 12 1.75 12h3.727c-.1 1.041-.52 1.872-1.292 2.757A.75.75 0 004.75 16h6.5a.75.75 0 00.565-1.243c-.772-.885-1.193-1.716-1.292-2.757h3.727A1.75 1.75 0 0016 10.25v-7.5A1.75 1.75 0 0014.25 1zM9.018 12H6.982a5.72 5.72 0 01-.765 2.5h3.566a5.72 5.72 0 01-.765-2.5z"></path></svg>
-+ </a>
-+
-+ <a href="/login?return_to=%2Fmovaid7%2FDarthInvaders%2Fblob%2Fmaster%2FLICENSE" class="btn-octicon disabled tooltipped tooltipped-nw"
-+ aria-label="You must be signed in to make or propose changes">
-+ <svg class="octicon octicon-pencil" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M11.013 1.427a1.75 1.75 0 012.474 0l1.086 1.086a1.75 1.75 0 010 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 01-.927-.928l.929-3.25a1.75 1.75 0 01.445-.758l8.61-8.61zm1.414 1.06a.25.25 0 00-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 000-.354l-1.086-1.086zM11.189 6.25L9.75 4.81l-6.286 6.287a.25.25 0 00-.064.108l-.558 1.953 1.953-.558a.249.249 0 00.108-.064l6.286-6.286z"></path></svg>
-+ </a>
-+ <a href="/login?return_to=%2Fmovaid7%2FDarthInvaders%2Fblob%2Fmaster%2FLICENSE" class="btn-octicon btn-octicon-danger disabled tooltipped tooltipped-nw"
-+ aria-label="You must be signed in to make or propose changes">
-+ <svg class="octicon octicon-trash" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6.5 1.75a.25.25 0 01.25-.25h2.5a.25.25 0 01.25.25V3h-3V1.75zm4.5 0V3h2.25a.75.75 0 010 1.5H2.75a.75.75 0 010-1.5H5V1.75C5 .784 5.784 0 6.75 0h2.5C10.216 0 11 .784 11 1.75zM4.496 6.675a.75.75 0 10-1.492.15l.66 6.6A1.75 1.75 0 005.405 15h5.19c.9 0 1.652-.681 1.741-1.576l.66-6.6a.75.75 0 00-1.492-.149l-.66 6.6a.25.25 0 01-.249.225h-5.19a.25.25 0 01-.249-.225l-.66-6.6z"></path></svg>
-+ </a>
-+ </div>
-+ </div>
-+</div>
-+
-+
-+
-+ <div itemprop="text" class="Box-body p-0 blob-wrapper data type-text gist-border-0">
-+
-+<table class="highlight tab-size js-file-line-container" data-tab-size="8" data-paste-markdown-skip>
-+ <tr>
-+ <td id="L1" class="blob-num js-line-number" data-line-number="1"></td>
-+ <td id="LC1" class="blob-code blob-code-inner js-file-line">MIT License</td>
-+ </tr>
-+ <tr>
-+ <td id="L2" class="blob-num js-line-number" data-line-number="2"></td>
-+ <td id="LC2" class="blob-code blob-code-inner js-file-line">
-+</td>
-+ </tr>
-+ <tr>
-+ <td id="L3" class="blob-num js-line-number" data-line-number="3"></td>
-+ <td id="LC3" class="blob-code blob-code-inner js-file-line">Copyright (c) 2021 Muhammad Vaid</td>
-+ </tr>
-+ <tr>
-+ <td id="L4" class="blob-num js-line-number" data-line-number="4"></td>
-+ <td id="LC4" class="blob-code blob-code-inner js-file-line">
-+</td>
-+ </tr>
-+ <tr>
-+ <td id="L5" class="blob-num js-line-number" data-line-number="5"></td>
-+ <td id="LC5" class="blob-code blob-code-inner js-file-line">Permission is hereby granted, free of charge, to any person obtaining a copy</td>
-+ </tr>
-+ <tr>
-+ <td id="L6" class="blob-num js-line-number" data-line-number="6"></td>
-+ <td id="LC6" class="blob-code blob-code-inner js-file-line">of this software and associated documentation files (the &quot;Software&quot;), to deal</td>
-+ </tr>
-+ <tr>
-+ <td id="L7" class="blob-num js-line-number" data-line-number="7"></td>
-+ <td id="LC7" class="blob-code blob-code-inner js-file-line">in the Software without restriction, including without limitation the rights</td>
-+ </tr>
-+ <tr>
-+ <td id="L8" class="blob-num js-line-number" data-line-number="8"></td>
-+ <td id="LC8" class="blob-code blob-code-inner js-file-line">to use, copy, modify, merge, publish, distribute, sublicense, and/or sell</td>
-+ </tr>
-+ <tr>
-+ <td id="L9" class="blob-num js-line-number" data-line-number="9"></td>
-+ <td id="LC9" class="blob-code blob-code-inner js-file-line">copies of the Software, and to permit persons to whom the Software is</td>
-+ </tr>
-+ <tr>
-+ <td id="L10" class="blob-num js-line-number" data-line-number="10"></td>
-+ <td id="LC10" class="blob-code blob-code-inner js-file-line">furnished to do so, subject to the following conditions:</td>
-+ </tr>
-+ <tr>
-+ <td id="L11" class="blob-num js-line-number" data-line-number="11"></td>
-+ <td id="LC11" class="blob-code blob-code-inner js-file-line">
-+</td>
-+ </tr>
-+ <tr>
-+ <td id="L12" class="blob-num js-line-number" data-line-number="12"></td>
-+ <td id="LC12" class="blob-code blob-code-inner js-file-line">The above copyright notice and this permission notice shall be included in all</td>
-+ </tr>
-+ <tr>
-+ <td id="L13" class="blob-num js-line-number" data-line-number="13"></td>
-+ <td id="LC13" class="blob-code blob-code-inner js-file-line">copies or substantial portions of the Software.</td>
-+ </tr>
-+ <tr>
-+ <td id="L14" class="blob-num js-line-number" data-line-number="14"></td>
-+ <td id="LC14" class="blob-code blob-code-inner js-file-line">
-+</td>
-+ </tr>
-+ <tr>
-+ <td id="L15" class="blob-num js-line-number" data-line-number="15"></td>
-+ <td id="LC15" class="blob-code blob-code-inner js-file-line">THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</td>
-+ </tr>
-+ <tr>
-+ <td id="L16" class="blob-num js-line-number" data-line-number="16"></td>
-+ <td id="LC16" class="blob-code blob-code-inner js-file-line">IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</td>
-+ </tr>
-+ <tr>
-+ <td id="L17" class="blob-num js-line-number" data-line-number="17"></td>
-+ <td id="LC17" class="blob-code blob-code-inner js-file-line">FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE</td>
-+ </tr>
-+ <tr>
-+ <td id="L18" class="blob-num js-line-number" data-line-number="18"></td>
-+ <td id="LC18" class="blob-code blob-code-inner js-file-line">AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER</td>
-+ </tr>
-+ <tr>
-+ <td id="L19" class="blob-num js-line-number" data-line-number="19"></td>
-+ <td id="LC19" class="blob-code blob-code-inner js-file-line">LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</td>
-+ </tr>
-+ <tr>
-+ <td id="L20" class="blob-num js-line-number" data-line-number="20"></td>
-+ <td id="LC20" class="blob-code blob-code-inner js-file-line">OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE</td>
-+ </tr>
-+ <tr>
-+ <td id="L21" class="blob-num js-line-number" data-line-number="21"></td>
-+ <td id="LC21" class="blob-code blob-code-inner js-file-line">SOFTWARE.</td>
-+ </tr>
-+</table>
-+
-+ <details class="details-reset details-overlay BlobToolbar position-absolute js-file-line-actions dropdown d-none" aria-hidden="true">
-+ <summary class="btn-octicon ml-0 px-2 p-0 color-bg-primary border color-border-tertiary rounded-1" aria-label="Inline file action toolbar">
-+ <svg class="octicon octicon-kebab-horizontal" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path></svg>
-+ </summary>
-+ <details-menu>
-+ <ul class="BlobToolbar-dropdown dropdown-menu dropdown-menu-se mt-2" style="width:185px">
-+ <li>
-+ <clipboard-copy role="menuitem" class="dropdown-item" id="js-copy-lines" style="cursor:pointer;">
-+ Copy lines
-+ </clipboard-copy>
-+ </li>
-+ <li>
-+ <clipboard-copy role="menuitem" class="dropdown-item" id="js-copy-permalink" style="cursor:pointer;">
-+ Copy permalink
-+ </clipboard-copy>
-+ </li>
-+ <li><a class="dropdown-item js-update-url-with-hash" id="js-view-git-blame" role="menuitem" href="/movaid7/DarthInvaders/blame/0d322f68eaccea4a08754f6cbcdbaf96f2f6836c/LICENSE">View git blame</a></li>
-+ <li><a class="dropdown-item" id="js-new-issue" role="menuitem" href="/movaid7/DarthInvaders/issues/new">Reference in new issue</a></li>
-+ </ul>
-+ </details-menu>
-+ </details>
-+
-+ </div>
-+
-+ </div>
-+
-+
-+
-+ <details class="details-reset details-overlay details-overlay-dark" id="jumpto-line-details-dialog">
-+ <summary data-hotkey="l" aria-label="Jump to line"></summary>
-+ <details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast linejump" aria-label="Jump to line">
-+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-jump-to-line-form Box-body d-flex" action="" accept-charset="UTF-8" method="get">
-+ <input class="form-control flex-auto mr-3 linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" aria-label="Jump to line" autofocus>
-+ <button type="submit" class="btn" data-close-dialog>Go</button>
-+</form> </details-dialog>
-+ </details>
-+
-+
-+</div>
-+
-+
-+
-+ </div>
-+</div>
-+
-+ </main>
-+ </div>
-+
-+ </div>
-+
-+
-+<div class="footer container-xl width-full p-responsive" role="contentinfo">
-+ <div class="position-relative d-flex flex-row-reverse flex-lg-row flex-wrap flex-lg-nowrap flex-justify-center flex-lg-justify-between pt-6 pb-2 mt-6 f6 color-text-secondary border-top color-border-secondary ">
-+ <ul class="list-style-none d-flex flex-wrap col-12 col-lg-5 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
-+ <li class="mr-3 mr-lg-0">&copy; 2021 GitHub, Inc.</li>
-+ <li class="mr-3 mr-lg-0"><a href="https://docs.github.com/en/github/site-policy/github-terms-of-service" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
-+ <li class="mr-3 mr-lg-0"><a href="https://docs.github.com/en/github/site-policy/github-privacy-statement" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
-+ <li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to security, text:security" href="https://github.com/security">Security</a></li>
-+ <li class="mr-3 mr-lg-0"><a href="https://www.githubstatus.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
-+ <li><a data-ga-click="Footer, go to help, text:Docs" href="https://docs.github.com">Docs</a></li>
-+ </ul>
-+
-+ <a aria-label="Homepage" title="GitHub" class="footer-octicon d-none d-lg-block mx-lg-4" href="https://github.com">
-+ <svg height="24" class="octicon octicon-mark-github" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
-+</a>
-+ <ul class="list-style-none d-flex flex-wrap col-12 col-lg-5 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
-+ <li class="mr-3 mr-lg-0"><a href="https://support.github.com" data-ga-click="Footer, go to contact, text:contact">Contact GitHub</a></li>
-+ <li class="mr-3 mr-lg-0"><a href="https://github.com/pricing" data-ga-click="Footer, go to Pricing, text:Pricing">Pricing</a></li>
-+ <li class="mr-3 mr-lg-0"><a href="https://docs.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
-+ <li class="mr-3 mr-lg-0"><a href="https://services.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
-+ <li class="mr-3 mr-lg-0"><a href="https://github.blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
-+ <li><a data-ga-click="Footer, go to about, text:about" href="https://github.com/about">About</a></li>
-+ </ul>
-+ </div>
-+ <div class="d-flex flex-justify-center pb-6">
-+ <span class="f6 color-text-tertiary"></span>
-+ </div>
-+
-+
-+</div>
-+
-+
-+
-+ <div id="ajax-error-message" class="ajax-error-message flash flash-error" hidden>
-+ <svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
-+ <button type="button" class="flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
-+ <svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
-+ </button>
-+ You can’t perform that action at this time.
-+ </div>
-+
-+ <div class="js-stale-session-flash flash flash-warn flash-banner" hidden
-+ >
-+ <svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
-+ <span class="js-stale-session-flash-signed-in" hidden>You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
-+ <span class="js-stale-session-flash-signed-out" hidden>You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
-+ </div>
-+ <template id="site-details-dialog">
-+ <details class="details-reset details-overlay details-overlay-dark lh-default color-text-primary hx_rsm" open>
-+ <summary role="button" aria-label="Close dialog"></summary>
-+ <details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast hx_rsm-dialog hx_rsm-modal">
-+ <button class="Box-btn-octicon m-0 btn-octicon position-absolute right-0 top-0" type="button" aria-label="Close dialog" data-close-dialog>
-+ <svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
-+ </button>
-+ <div class="octocat-spinner my-6 js-details-dialog-spinner"></div>
-+ </details-dialog>
-+ </details>
-+</template>
-+
-+ <div class="Popover js-hovercard-content position-absolute" style="display: none; outline: none;" tabindex="0">
-+ <div class="Popover-message Popover-message--bottom-left Popover-message--large Box color-shadow-large" style="width:360px;">
-+ </div>
-+</div>
-+
-+
-+
-+
-+ </body>
-+</html>
-+
diff --git a/debian/patches/series b/debian/patches/series
index d76e707..bb8b354 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,6 +1,5 @@
Fix-for-Earth-Graphic-crash
Fix-include-file-paths
Massage-Sauce-for-Filesystem-Hierarchy-Standard
Add-rudimentary-makefile-for-debhelper
Update-Score-Filenames-for-Better-.config-integration
-add-License-file-(not-bumping-version)
diff --git a/scores.txt b/scores.txt
deleted file mode 100644
index e10a535..0000000
--- a/scores.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-99999999 Vaid
-5320 jazz
-4870 mo
-4110 muhammad
-4020 dead
-1980 jazz
-1400 mo
-1320 mall
-1140 jazz
-730 mo
\ No newline at end of file

File Metadata

Mime Type
text/x-diff
Expires
Thu, Sep 11, 8:31 PM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
42735
Default Alt Text
(153 KB)

Event Timeline