20 lines
463 B
C#
20 lines
463 B
C#
using fxl.codes.kisekae.Services;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace fxl.codes.kisekae.Controllers
|
|
{
|
|
public class PlayController : Controller
|
|
{
|
|
private readonly DatabaseService _databaseService;
|
|
|
|
public PlayController(DatabaseService databaseService)
|
|
{
|
|
_databaseService = databaseService;
|
|
}
|
|
|
|
public IActionResult Index(int id, int configId)
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |