From 13ad0ff4f3bce05e513768d4999a3f4ec471b872 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 May 2017 16:03:32 -0400 Subject: Pong highscore frontend. --- Project-Unite/Views/Stats/Pong.cshtml | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Project-Unite/Views/Stats/Pong.cshtml (limited to 'Project-Unite/Views/Stats') diff --git a/Project-Unite/Views/Stats/Pong.cshtml b/Project-Unite/Views/Stats/Pong.cshtml new file mode 100644 index 0000000..c14ed4a --- /dev/null +++ b/Project-Unite/Views/Stats/Pong.cshtml @@ -0,0 +1,42 @@ +@model Project_Unite.Models.PongStatsViewModel +@{ + ViewBag.Title = "Pong - Highscores"; +} + +

Pong highscores

+ +

One of the apps in ShiftOS is a recreation of Pong where the game is split into levels that are 60 minutes in length.

+ +

You can earn Codepoints in Pong by either beating the AI, or surviving a level. You can cash out at the end of the level. Just be ware, if the ball gets past you, you lose all those Codepoints.

+ +

Below is a list of everyone's Pong scores - the top players at the top of the list.

+ + + + + + + +@foreach(var entry in Model.Highscores) +{ + + + + + +} +
UserLevelCodepoints
@Html.UserLink(entry.UserId)@entry.Level@entry.CodepointsCashout CP
+ + \ No newline at end of file -- cgit v1.2.3