using System;
using System.ComponentModel.DataAnnotations;
namespace ClickerGame
{
public class Enemy
public int Id {get; set;}
public int HP {get; set;}
public int Cost {get; set;}
public string Image {get; set;}
}
@model ClickerGame.Enemy
@{
Layout = null;
<!DOCTYPE html>
<html>
<head>
<title>Clicker Game</title>
</head>
<body>
<h1> MY first MVC Game </h1>
</body>
</html>
using System.Web.MVC;
using System.Colletions.Generic;
using System.Linq ;
public class HomeController:Controller
public ActionResult Index()
return View();