コード例 #1
0
ファイル: Item.cs プロジェクト: SergeiPolev/HyperPacker
    private void Start()
    {
        startingPosition = transform.position;
        if (!interactable)
        {
            placed = true;
        }

        countryItems = Queue.GetCurrentPassengerCountry();
    }
コード例 #2
0
 public Passenger(CountryItems country)
 {
     passengerCountry = country;
     money            = Random.Range(0, 50);
 }