This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| public class GoPlaces : MonoBehaviour | |
| { | |
| [SerializeField] private float _moveSpeed; | |
| [SerializeField] private Transform _allPlacesRoot; | |
| private Transform[] _places; | |
| private int _currentPlaceIndex; | |
| private Transform _target; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| TransferSoldiersFlow transferSoldiersFlow = new TransferSoldiersFlow(); | |
| transferSoldiersFlow.Run(); | |
| } | |
| } | |
| public class TransferSoldiersFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| SoldierReportFlow report = new SoldierReportFlow(); | |
| report.Run(); | |
| } | |
| } | |
| public class SoldierReportFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main() | |
| { | |
| CheckExpirationDateFlow checkExpirationDateFlow = new CheckExpirationDateFlow(); | |
| checkExpirationDateFlow.Run(); | |
| } | |
| } | |
| public class CheckExpirationDateFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main() | |
| { | |
| ServerFlow serverFlow = new ServerFlow(); | |
| serverFlow.Run(); | |
| } | |
| } | |
| public class ServerFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main() | |
| { | |
| HospitalFlow hospitalFlow = new HospitalFlow(); | |
| hospitalFlow.Run(); | |
| } | |
| } | |
| public class HospitalFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main() | |
| { | |
| AmnistiaFlow inspectionFlow = new AmnistiaFlow(); | |
| inspectionFlow.Run(); | |
| } | |
| } | |
| public class AmnistiaFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main() | |
| { | |
| InspectionFlow inspectionFlow = new InspectionFlow(); | |
| inspectionFlow.Run(); | |
| } | |
| } | |
| public class InspectionFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| CarRepairService service = new CarRepairService(); | |
| service.Run(); | |
| } | |
| } | |
| public class CarRepairService |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace OOP | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Zoo zoo = new Zoo(); | |
| zoo.Run(); | |
| } | |
| } |
NewerOlder