mirror of
https://github.com/smyalygames/monopoly.git
synced 2025-05-18 06:14:10 +02:00
Fixed the list for all the properties
This commit is contained in:
parent
33834069d3
commit
cf686d8cd1
@ -1,7 +1,6 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using properties;
|
||||
|
||||
public class board : MonoBehaviour
|
||||
{
|
||||
@ -10,7 +9,7 @@ public class board : MonoBehaviour
|
||||
{
|
||||
public int houses; //Initialising houses
|
||||
public int hotels; //Initialising hotels
|
||||
List<properties.Property> cards = new List<properties.Property>;
|
||||
List<Property> cards = new List<Property>();
|
||||
|
||||
public Board()
|
||||
{
|
||||
@ -19,6 +18,8 @@ public class board : MonoBehaviour
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
// Start is called before the first frame update
|
||||
|
Loading…
x
Reference in New Issue
Block a user