Add files via upload

This commit is contained in:
Dawid Bepierszcz
2025-07-17 21:37:57 +02:00
committed by GitHub
parent d965384025
commit 84d2197317
71 changed files with 5596 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using CounterStrikeSharp.API.Core;
namespace CS2_SimpleAdmin_PlayTimeModule;
public class Config : IBasePluginConfig
{
public int Version { get; set; } = 1;
public string AdminFlag { get; set; } = "@css/ban";
public int MinPlayers { get; set; } = 4;
}