Skip to content

Instantly share code, notes, and snippets.

View SavkinIS's full-sized avatar

Иван Савкин SavkinIS

  • null
View GitHub Profile
using UnityEngine;
public class GoPlaces : MonoBehaviour
{
[SerializeField] private float _moveSpeed;
[SerializeField] private Transform _allPlacesRoot;
private Transform[] _places;
private int _currentPlaceIndex;
private Transform _target;
@SavkinIS
SavkinIS / gist:7e076cee887763512f0063e88fb9f864
Created January 10, 2026 17:37
Перевод бойцов
public class Program
{
public static void Main()
{
TransferSoldiersFlow transferSoldiersFlow = new TransferSoldiersFlow();
transferSoldiersFlow.Run();
}
}
public class TransferSoldiersFlow
@SavkinIS
SavkinIS / gist:1d32bdd217940d112c3bbc3404c7c0fd
Last active January 11, 2026 17:16
Отчёт о вооружении
public class Program
{
public static void Main()
{
SoldierReportFlow report = new SoldierReportFlow();
report.Run();
}
}
public class SoldierReportFlow
@SavkinIS
SavkinIS / gist:40a3c0d7397acfe84be4febeca2ba200
Created January 10, 2026 16:31
Определение просрочки
class Program
{
static void Main()
{
CheckExpirationDateFlow checkExpirationDateFlow = new CheckExpirationDateFlow();
checkExpirationDateFlow.Run();
}
}
public class CheckExpirationDateFlow
@SavkinIS
SavkinIS / gist:bff76031be09d73e3d9bb2d7b5e1662c
Created January 10, 2026 15:43
Топ игроков сервера
class Program
{
static void Main()
{
ServerFlow serverFlow = new ServerFlow();
serverFlow.Run();
}
}
public class ServerFlow
@SavkinIS
SavkinIS / gist:7e960434689d4a299fa85ea7dede61d3
Created January 10, 2026 15:14
Анархия в больнице
class Program
{
static void Main()
{
HospitalFlow hospitalFlow = new HospitalFlow();
hospitalFlow.Run();
}
}
public class HospitalFlow
class Program
{
static void Main()
{
AmnistiaFlow inspectionFlow = new AmnistiaFlow();
inspectionFlow.Run();
}
}
public class AmnistiaFlow
@SavkinIS
SavkinIS / gist:a0553ade768235347457226bba4083d0
Last active January 9, 2026 20:30
Поиск преступника
class Program
{
static void Main()
{
InspectionFlow inspectionFlow = new InspectionFlow();
inspectionFlow.Run();
}
}
public class InspectionFlow
@SavkinIS
SavkinIS / gist:d25960e6d94d5e7e2ff151093d2db909
Last active December 17, 2025 11:27
Автосервис
class Program
{
static void Main(string[] args)
{
CarRepairService service = new CarRepairService();
service.Run();
}
}
public class CarRepairService
namespace OOP
{
class Program
{
static void Main(string[] args)
{
Zoo zoo = new Zoo();
zoo.Run();
}
}