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 _27 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var orderForm = new Order(); | |
| var paymentHandler = new PaymentHandler(); | |
| var inputHandler = new InputHandler(); |
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 PlayerData : ScriptableObject | |
| { | |
| public string Name { get; private set; } | |
| public int Age { get; private set; } | |
| } | |
| public class Player | |
| { | |
| private Transformable _transfrom; |