├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── Assets ├── Dependencies │ └── TSTableView │ │ ├── ITableViewDataSource.cs │ │ ├── ITableViewDataSource.cs.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── TableView.cs │ │ ├── TableView.cs.meta │ │ ├── TableViewCell.cs │ │ └── TableViewCell.cs.meta ├── Prefabs │ ├── InventoryCellPrefab.prefab │ ├── InventoryCellPrefab.prefab.meta │ ├── ModalAlertPrefab.prefab │ ├── ModalAlertPrefab.prefab.meta │ ├── ScoreCellPrefab.prefab │ └── ScoreCellPrefab.prefab.meta ├── Resources │ ├── lemons.png │ ├── lemons.png.meta │ ├── medicine.png │ ├── medicine.png.meta │ ├── melons.png │ ├── melons.png.meta │ ├── strawberries.png │ └── strawberries.png.meta ├── Scenes │ ├── HighscoresDemo.unity │ ├── HighscoresDemo.unity.meta │ ├── InventoryDemo.unity │ └── InventoryDemo.unity.meta └── Scripts │ ├── DataModels.meta │ ├── DataModels │ ├── Highscore.cs │ ├── Highscore.cs.meta │ ├── Inventory.cs │ ├── Inventory.cs.meta │ ├── Message.cs │ └── Message.cs.meta │ ├── HighscoresDemo.cs │ ├── HighscoresDemo.cs.meta │ ├── InventoryDemo.cs │ ├── InventoryDemo.cs.meta │ ├── UI.meta │ └── UI │ ├── ModalAlert.cs │ ├── ModalAlert.cs.meta │ ├── TableViewCells.meta │ └── TableViewCells │ ├── InventoryCell.cs │ ├── InventoryCell.cs.meta │ ├── ScoreCell.cs │ └── ScoreCell.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/ITableViewDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/ITableViewDataSource.cs -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/ITableViewDataSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/ITableViewDataSource.cs.meta -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/LICENSE -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/LICENSE.meta -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/README.md -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/README.md.meta -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/TableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/TableView.cs -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/TableView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/TableView.cs.meta -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/TableViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/TableViewCell.cs -------------------------------------------------------------------------------- /Assets/Dependencies/TSTableView/TableViewCell.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Dependencies/TSTableView/TableViewCell.cs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/InventoryCellPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Prefabs/InventoryCellPrefab.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/InventoryCellPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Prefabs/InventoryCellPrefab.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/ModalAlertPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Prefabs/ModalAlertPrefab.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/ModalAlertPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Prefabs/ModalAlertPrefab.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/ScoreCellPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Prefabs/ScoreCellPrefab.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/ScoreCellPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Prefabs/ScoreCellPrefab.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/lemons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/lemons.png -------------------------------------------------------------------------------- /Assets/Resources/lemons.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/lemons.png.meta -------------------------------------------------------------------------------- /Assets/Resources/medicine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/medicine.png -------------------------------------------------------------------------------- /Assets/Resources/medicine.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/medicine.png.meta -------------------------------------------------------------------------------- /Assets/Resources/melons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/melons.png -------------------------------------------------------------------------------- /Assets/Resources/melons.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/melons.png.meta -------------------------------------------------------------------------------- /Assets/Resources/strawberries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/strawberries.png -------------------------------------------------------------------------------- /Assets/Resources/strawberries.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Resources/strawberries.png.meta -------------------------------------------------------------------------------- /Assets/Scenes/HighscoresDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scenes/HighscoresDemo.unity -------------------------------------------------------------------------------- /Assets/Scenes/HighscoresDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scenes/HighscoresDemo.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/InventoryDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scenes/InventoryDemo.unity -------------------------------------------------------------------------------- /Assets/Scenes/InventoryDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scenes/InventoryDemo.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts/DataModels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels.meta -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/Highscore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels/Highscore.cs -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/Highscore.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels/Highscore.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels/Inventory.cs -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/Inventory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels/Inventory.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels/Message.cs -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/Message.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/DataModels/Message.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/HighscoresDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/HighscoresDemo.cs -------------------------------------------------------------------------------- /Assets/Scripts/HighscoresDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/HighscoresDemo.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/InventoryDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/InventoryDemo.cs -------------------------------------------------------------------------------- /Assets/Scripts/InventoryDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/InventoryDemo.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/ModalAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/ModalAlert.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/ModalAlert.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/ModalAlert.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/TableViewCells.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/TableViewCells.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/TableViewCells/InventoryCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/TableViewCells/InventoryCell.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/TableViewCells/InventoryCell.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/TableViewCells/InventoryCell.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/TableViewCells/ScoreCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/TableViewCells/ScoreCell.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/TableViewCells/ScoreCell.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/Assets/Scripts/UI/TableViewCells/ScoreCell.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.1f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity3dAzure/AppServicesDemo/HEAD/README.md --------------------------------------------------------------------------------