diff --git a/aplib.net-demo/Assets/Scripts/BuildNavMesh.cs b/aplib.net-demo/Assets/Scripts/BuildNavMesh.cs index 878473c7..ee4f79d5 100644 --- a/aplib.net-demo/Assets/Scripts/BuildNavMesh.cs +++ b/aplib.net-demo/Assets/Scripts/BuildNavMesh.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Unity.AI.Navigation; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Configuration.cs b/aplib.net-demo/Assets/Scripts/Configuration.cs index 4d277ed9..3784bf40 100644 --- a/aplib.net-demo/Assets/Scripts/Configuration.cs +++ b/aplib.net-demo/Assets/Scripts/Configuration.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using LevelGeneration; using TMPro; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Doors/Door.cs b/aplib.net-demo/Assets/Scripts/Doors/Door.cs index 1a0be6ee..ebce0ce5 100644 --- a/aplib.net-demo/Assets/Scripts/Doors/Door.cs +++ b/aplib.net-demo/Assets/Scripts/Doors/Door.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using TMPro; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Doors/TempItemID.cs b/aplib.net-demo/Assets/Scripts/Doors/TempItemID.cs index bf1fc847..f56f7e57 100644 --- a/aplib.net-demo/Assets/Scripts/Doors/TempItemID.cs +++ b/aplib.net-demo/Assets/Scripts/Doors/TempItemID.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Entities/Enemy/AbstractEnemy.cs b/aplib.net-demo/Assets/Scripts/Entities/Enemy/AbstractEnemy.cs index 2569e6a8..64423dab 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Enemy/AbstractEnemy.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Enemy/AbstractEnemy.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Entities/Enemy/MeleeEnemy.cs b/aplib.net-demo/Assets/Scripts/Entities/Enemy/MeleeEnemy.cs index a17f7c65..78607e5c 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Enemy/MeleeEnemy.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Enemy/MeleeEnemy.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities.Weapons; using System.Collections; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Enemy/RangedEnemy.cs b/aplib.net-demo/Assets/Scripts/Entities/Enemy/RangedEnemy.cs index e68f07f7..6801e735 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Enemy/RangedEnemy.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Enemy/RangedEnemy.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities.Weapons; using System.Collections; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Enemy/RespawningEnemy.cs b/aplib.net-demo/Assets/Scripts/Entities/Enemy/RespawningEnemy.cs index a011a735..aac608d0 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Enemy/RespawningEnemy.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Enemy/RespawningEnemy.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/EntitySound.cs b/aplib.net-demo/Assets/Scripts/Entities/EntitySound.cs index f150775a..63ee14fa 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/EntitySound.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/EntitySound.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Entities/HealthComponent.cs b/aplib.net-demo/Assets/Scripts/Entities/HealthComponent.cs index c7d6634a..8ea954ba 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/HealthComponent.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/HealthComponent.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/PathFind.cs b/aplib.net-demo/Assets/Scripts/Entities/PathFind.cs index b8c37b71..cb567dfd 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/PathFind.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/PathFind.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.AI; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Player/MouseLock.cs b/aplib.net-demo/Assets/Scripts/Entities/Player/MouseLock.cs index 9270d3d4..3b1d7ee8 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Player/MouseLock.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Player/MouseLock.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Entities/Player/Movement.cs b/aplib.net-demo/Assets/Scripts/Entities/Player/Movement.cs index dd89c46b..1fda4eb7 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Player/Movement.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Player/Movement.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Entities/Player/PlayerLogic.cs b/aplib.net-demo/Assets/Scripts/Entities/Player/PlayerLogic.cs index 44e6c91b..0d06ba65 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Player/PlayerLogic.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Player/PlayerLogic.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Player/ShowPath.cs b/aplib.net-demo/Assets/Scripts/Entities/Player/ShowPath.cs index e1714aff..a3899ca2 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Player/ShowPath.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Player/ShowPath.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.AI; diff --git a/aplib.net-demo/Assets/Scripts/Entities/RespawnWhenButtonPressed.cs b/aplib.net-demo/Assets/Scripts/Entities/RespawnWhenButtonPressed.cs index c42f536f..3588d202 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/RespawnWhenButtonPressed.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/RespawnWhenButtonPressed.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/RespawnableComponent.cs b/aplib.net-demo/Assets/Scripts/Entities/RespawnableComponent.cs index 45429cbd..7a86d4e3 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/RespawnableComponent.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/RespawnableComponent.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using UnityEngine; using Random = UnityEngine.Random; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Weapons/MeleeWeapon.cs b/aplib.net-demo/Assets/Scripts/Entities/Weapons/MeleeWeapon.cs index 7d57752b..12b2c567 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Weapons/MeleeWeapon.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Weapons/MeleeWeapon.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using System.Linq; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Weapons/RangedWeapon.cs b/aplib.net-demo/Assets/Scripts/Entities/Weapons/RangedWeapon.cs index 031ccda7..6751621f 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Weapons/RangedWeapon.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Weapons/RangedWeapon.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using System.Linq; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Entities/Weapons/Weapon.cs b/aplib.net-demo/Assets/Scripts/Entities/Weapons/Weapon.cs index 7243b319..43ddf9ba 100644 --- a/aplib.net-demo/Assets/Scripts/Entities/Weapons/Weapon.cs +++ b/aplib.net-demo/Assets/Scripts/Entities/Weapons/Weapon.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; namespace Entities.Weapons diff --git a/aplib.net-demo/Assets/Scripts/Inventory/AmmoPouch.cs b/aplib.net-demo/Assets/Scripts/Inventory/AmmoPouch.cs index 49e2b708..9456afba 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/AmmoPouch.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/AmmoPouch.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.Serialization; diff --git a/aplib.net-demo/Assets/Scripts/Inventory/Equipment.cs b/aplib.net-demo/Assets/Scripts/Inventory/Equipment.cs index fe58f989..e8ff69b7 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/Equipment.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/Equipment.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Inventory/EquipmentInventory.cs b/aplib.net-demo/Assets/Scripts/Inventory/EquipmentInventory.cs index 457ab7ca..75f8129d 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/EquipmentInventory.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/EquipmentInventory.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using System.Linq; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Inventory/Inventory.cs b/aplib.net-demo/Assets/Scripts/Inventory/Inventory.cs index 152f09a4..9c3904db 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/Inventory.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/Inventory.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Items; using System; using System.Collections.Generic; diff --git a/aplib.net-demo/Assets/Scripts/Inventory/Item.cs b/aplib.net-demo/Assets/Scripts/Inventory/Item.cs index 1d767c7c..6ddc72eb 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/Item.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/Item.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.UI; diff --git a/aplib.net-demo/Assets/Scripts/Inventory/Key.cs b/aplib.net-demo/Assets/Scripts/Inventory/Key.cs index db194dca..6c2c596f 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/Key.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/Key.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Inventory/KeyRing.cs b/aplib.net-demo/Assets/Scripts/Inventory/KeyRing.cs index aeab770a..91d21cf4 100644 --- a/aplib.net-demo/Assets/Scripts/Inventory/KeyRing.cs +++ b/aplib.net-demo/Assets/Scripts/Inventory/KeyRing.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Doors; using System.Collections.Generic; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Items/AmmoItem.cs b/aplib.net-demo/Assets/Scripts/Items/AmmoItem.cs index 664d0b4c..e28bbb4f 100644 --- a/aplib.net-demo/Assets/Scripts/Items/AmmoItem.cs +++ b/aplib.net-demo/Assets/Scripts/Items/AmmoItem.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; namespace Assets.Scripts.Items diff --git a/aplib.net-demo/Assets/Scripts/Items/BeforeDestroyKey.cs b/aplib.net-demo/Assets/Scripts/Items/BeforeDestroyKey.cs index 5ff2807a..649fc8e2 100644 --- a/aplib.net-demo/Assets/Scripts/Items/BeforeDestroyKey.cs +++ b/aplib.net-demo/Assets/Scripts/Items/BeforeDestroyKey.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Doors; using System.Linq; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Items/CubeItem.cs b/aplib.net-demo/Assets/Scripts/Items/CubeItem.cs index 85f258c3..27009a9d 100644 --- a/aplib.net-demo/Assets/Scripts/Items/CubeItem.cs +++ b/aplib.net-demo/Assets/Scripts/Items/CubeItem.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + namespace Assets.Scripts.Items { public class CubeItem : Item diff --git a/aplib.net-demo/Assets/Scripts/Items/EndItem.cs b/aplib.net-demo/Assets/Scripts/Items/EndItem.cs index 5d1c93fe..95da6dc2 100644 --- a/aplib.net-demo/Assets/Scripts/Items/EndItem.cs +++ b/aplib.net-demo/Assets/Scripts/Items/EndItem.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + namespace Assets.Scripts.Items { public class EndItem : Item diff --git a/aplib.net-demo/Assets/Scripts/Items/HealthPotion.cs b/aplib.net-demo/Assets/Scripts/Items/HealthPotion.cs index b65fe1cd..b34e9ad3 100644 --- a/aplib.net-demo/Assets/Scripts/Items/HealthPotion.cs +++ b/aplib.net-demo/Assets/Scripts/Items/HealthPotion.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; namespace Assets.Scripts.Items diff --git a/aplib.net-demo/Assets/Scripts/Items/PickupableItem.cs b/aplib.net-demo/Assets/Scripts/Items/PickupableItem.cs index d451192b..41818ebd 100644 --- a/aplib.net-demo/Assets/Scripts/Items/PickupableItem.cs +++ b/aplib.net-demo/Assets/Scripts/Items/PickupableItem.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Items/PickupableKey.cs b/aplib.net-demo/Assets/Scripts/Items/PickupableKey.cs index c53fa15d..4a69c23d 100644 --- a/aplib.net-demo/Assets/Scripts/Items/PickupableKey.cs +++ b/aplib.net-demo/Assets/Scripts/Items/PickupableKey.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Items/RagePotion.cs b/aplib.net-demo/Assets/Scripts/Items/RagePotion.cs index 7405e924..9fc5e670 100644 --- a/aplib.net-demo/Assets/Scripts/Items/RagePotion.cs +++ b/aplib.net-demo/Assets/Scripts/Items/RagePotion.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities.Weapons; using System.Collections; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Items/SpawnWave.cs b/aplib.net-demo/Assets/Scripts/Items/SpawnWave.cs index 6c8a8be0..a6fa73e7 100644 --- a/aplib.net-demo/Assets/Scripts/Items/SpawnWave.cs +++ b/aplib.net-demo/Assets/Scripts/Items/SpawnWave.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using LevelGeneration; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/EnemySpawner.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/EnemySpawner.cs index d8ce4dec..5236b80a 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/EnemySpawner.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/EnemySpawner.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using System.Linq; using ThreadSafeRandom; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/GameObjectPlacer.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/GameObjectPlacer.cs index 7f9143d7..73331d6b 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/GameObjectPlacer.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/GameObjectPlacer.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Doors; using Assets.Scripts.Tiles; using System.Collections.Generic; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/GridConfig.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/GridConfig.cs index 7755e388..1c6f8042 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/GridConfig.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/GridConfig.cs @@ -1,4 +1,8 @@ -using UnityEngine; +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + +using UnityEngine; namespace LevelGeneration { diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelGenerationPipeline.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelGenerationPipeline.cs index 54a6883b..ffbbea54 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelGenerationPipeline.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelGenerationPipeline.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using ThreadSafeRandom; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelSpawner.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelSpawner.cs index 2a483cb1..7f8f3a62 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelSpawner.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/LevelSpawner.cs @@ -1,4 +1,8 @@ -using Assets.Scripts.Tiles; +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + +using Assets.Scripts.Tiles; using System; using System.Collections.Generic; using System.Linq; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/RoomObjects.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/RoomObjects.cs index 04f7a115..f6e4bf16 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/RoomObjects.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/RoomObjects.cs @@ -1,4 +1,8 @@ -using UnityEngine; +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + +using UnityEngine; namespace LevelGeneration { diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleEnemies.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleEnemies.cs index 033b9be1..d067364f 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleEnemies.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleEnemies.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using System.Collections.Generic; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleItems.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleItems.cs index 35360a8a..5838ee01 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleItems.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawnAbleItems.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using System.Collections.Generic; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawningExtensions.cs b/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawningExtensions.cs index 04ccb072..19e11418 100644 --- a/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawningExtensions.cs +++ b/aplib.net-demo/Assets/Scripts/LevelGeneration/SpawningExtensions.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using WFC; diff --git a/aplib.net-demo/Assets/Scripts/MainMenu/GameCanvas.cs b/aplib.net-demo/Assets/Scripts/MainMenu/GameCanvas.cs index db116fea..3c1ba5e3 100644 --- a/aplib.net-demo/Assets/Scripts/MainMenu/GameCanvas.cs +++ b/aplib.net-demo/Assets/Scripts/MainMenu/GameCanvas.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.SceneManagement; diff --git a/aplib.net-demo/Assets/Scripts/MainMenu/MainMenuCanvas.cs b/aplib.net-demo/Assets/Scripts/MainMenu/MainMenuCanvas.cs index d858146f..7308d878 100644 --- a/aplib.net-demo/Assets/Scripts/MainMenu/MainMenuCanvas.cs +++ b/aplib.net-demo/Assets/Scripts/MainMenu/MainMenuCanvas.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.SceneManagement; diff --git a/aplib.net-demo/Assets/Scripts/MainMenu/RenderQuality.cs b/aplib.net-demo/Assets/Scripts/MainMenu/RenderQuality.cs index 63b3b77a..0b7eab86 100644 --- a/aplib.net-demo/Assets/Scripts/MainMenu/RenderQuality.cs +++ b/aplib.net-demo/Assets/Scripts/MainMenu/RenderQuality.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using TMPro; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/MainMenu/VolumeSlider.cs b/aplib.net-demo/Assets/Scripts/MainMenu/VolumeSlider.cs index 0432dd11..9b30e33c 100644 --- a/aplib.net-demo/Assets/Scripts/MainMenu/VolumeSlider.cs +++ b/aplib.net-demo/Assets/Scripts/MainMenu/VolumeSlider.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.UI; diff --git a/aplib.net-demo/Assets/Scripts/Misc/DisableOnPause.cs b/aplib.net-demo/Assets/Scripts/Misc/DisableOnPause.cs index 60d90397..a9bc7b9b 100644 --- a/aplib.net-demo/Assets/Scripts/Misc/DisableOnPause.cs +++ b/aplib.net-demo/Assets/Scripts/Misc/DisableOnPause.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Misc/GameManager.cs b/aplib.net-demo/Assets/Scripts/Misc/GameManager.cs index d0f3d000..316607f6 100644 --- a/aplib.net-demo/Assets/Scripts/Misc/GameManager.cs +++ b/aplib.net-demo/Assets/Scripts/Misc/GameManager.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Misc/GameOverOnDeath.cs b/aplib.net-demo/Assets/Scripts/Misc/GameOverOnDeath.cs index 87018ec4..8218d98a 100644 --- a/aplib.net-demo/Assets/Scripts/Misc/GameOverOnDeath.cs +++ b/aplib.net-demo/Assets/Scripts/Misc/GameOverOnDeath.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Misc/InputManager.cs b/aplib.net-demo/Assets/Scripts/Misc/InputManager.cs index d94e851b..c55bcc6d 100644 --- a/aplib.net-demo/Assets/Scripts/Misc/InputManager.cs +++ b/aplib.net-demo/Assets/Scripts/Misc/InputManager.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using UnityEngine; using UnityEngine.InputSystem; diff --git a/aplib.net-demo/Assets/Scripts/Misc/Singleton.cs b/aplib.net-demo/Assets/Scripts/Misc/Singleton.cs index c4a15021..62de9a6b 100644 --- a/aplib.net-demo/Assets/Scripts/Misc/Singleton.cs +++ b/aplib.net-demo/Assets/Scripts/Misc/Singleton.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; using UnityEngine.SceneManagement; diff --git a/aplib.net-demo/Assets/Scripts/PipelineTesting/Calculator.cs b/aplib.net-demo/Assets/Scripts/PipelineTesting/Calculator.cs index 62b684b3..00484a73 100644 --- a/aplib.net-demo/Assets/Scripts/PipelineTesting/Calculator.cs +++ b/aplib.net-demo/Assets/Scripts/PipelineTesting/Calculator.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; public class Calculator : MonoBehaviour diff --git a/aplib.net-demo/Assets/Scripts/Points/DoorPointsContributor.cs b/aplib.net-demo/Assets/Scripts/Points/DoorPointsContributor.cs index c57265ee..7e54dc74 100644 --- a/aplib.net-demo/Assets/Scripts/Points/DoorPointsContributor.cs +++ b/aplib.net-demo/Assets/Scripts/Points/DoorPointsContributor.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Doors; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Points/EnemyPointsContributor.cs b/aplib.net-demo/Assets/Scripts/Points/EnemyPointsContributor.cs index 5069a485..8f5d9332 100644 --- a/aplib.net-demo/Assets/Scripts/Points/EnemyPointsContributor.cs +++ b/aplib.net-demo/Assets/Scripts/Points/EnemyPointsContributor.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Points/ItemPointsContributor.cs b/aplib.net-demo/Assets/Scripts/Points/ItemPointsContributor.cs index 2ccc9b64..5768526d 100644 --- a/aplib.net-demo/Assets/Scripts/Points/ItemPointsContributor.cs +++ b/aplib.net-demo/Assets/Scripts/Points/ItemPointsContributor.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Items; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Points/KeyPointsContributor.cs b/aplib.net-demo/Assets/Scripts/Points/KeyPointsContributor.cs index 970504fe..7b621971 100644 --- a/aplib.net-demo/Assets/Scripts/Points/KeyPointsContributor.cs +++ b/aplib.net-demo/Assets/Scripts/Points/KeyPointsContributor.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Items; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Points/PointsContributorComponent.cs b/aplib.net-demo/Assets/Scripts/Points/PointsContributorComponent.cs index eb357d43..b9ecfb49 100644 --- a/aplib.net-demo/Assets/Scripts/Points/PointsContributorComponent.cs +++ b/aplib.net-demo/Assets/Scripts/Points/PointsContributorComponent.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Points/PointsManager.cs b/aplib.net-demo/Assets/Scripts/Points/PointsManager.cs index 9d1c9ada..57897551 100644 --- a/aplib.net-demo/Assets/Scripts/Points/PointsManager.cs +++ b/aplib.net-demo/Assets/Scripts/Points/PointsManager.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System; using System.Collections.Generic; using System.Linq; diff --git a/aplib.net-demo/Assets/Scripts/SharedRandom.cs b/aplib.net-demo/Assets/Scripts/SharedRandom.cs index 7f37ee42..56de592e 100644 --- a/aplib.net-demo/Assets/Scripts/SharedRandom.cs +++ b/aplib.net-demo/Assets/Scripts/SharedRandom.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + #nullable enable using System; using UnityRandom = UnityEngine.Random; diff --git a/aplib.net-demo/Assets/Scripts/Teleporter/Teleporter.cs b/aplib.net-demo/Assets/Scripts/Teleporter/Teleporter.cs index 297da63b..a38eed14 100644 --- a/aplib.net-demo/Assets/Scripts/Teleporter/Teleporter.cs +++ b/aplib.net-demo/Assets/Scripts/Teleporter/Teleporter.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Teleporter/TeleporterFX.cs b/aplib.net-demo/Assets/Scripts/Teleporter/TeleporterFX.cs index 1e386798..98ec4e36 100644 --- a/aplib.net-demo/Assets/Scripts/Teleporter/TeleporterFX.cs +++ b/aplib.net-demo/Assets/Scripts/Teleporter/TeleporterFX.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; namespace Teleporter diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Corner.cs b/aplib.net-demo/Assets/Scripts/Tiles/Corner.cs index fc8dbc71..d3028402 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Corner.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Corner.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using static Assets.Scripts.Tiles.Direction; diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Crossing.cs b/aplib.net-demo/Assets/Scripts/Tiles/Crossing.cs index 514bc277..975c4c01 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Crossing.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Crossing.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using static Assets.Scripts.Tiles.Direction; diff --git a/aplib.net-demo/Assets/Scripts/Tiles/DeadEnd.cs b/aplib.net-demo/Assets/Scripts/Tiles/DeadEnd.cs index 1af9ab5b..5ddb7fb9 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/DeadEnd.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/DeadEnd.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using static Assets.Scripts.Tiles.Direction; diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Direction.cs b/aplib.net-demo/Assets/Scripts/Tiles/Direction.cs index bda80297..0ea48732 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Direction.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Direction.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + namespace Assets.Scripts.Tiles { /// diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Empty.cs b/aplib.net-demo/Assets/Scripts/Tiles/Empty.cs index 09d71e32..4c36fbf9 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Empty.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Empty.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; namespace Assets.Scripts.Tiles diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Room.cs b/aplib.net-demo/Assets/Scripts/Tiles/Room.cs index 104814dd..77d0d627 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Room.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Room.cs @@ -1,4 +1,8 @@ -using System.Collections.Generic; +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + +using System.Collections.Generic; namespace Assets.Scripts.Tiles { diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Straight.cs b/aplib.net-demo/Assets/Scripts/Tiles/Straight.cs index 286b8a39..e93870e9 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Straight.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Straight.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using static Assets.Scripts.Tiles.Direction; diff --git a/aplib.net-demo/Assets/Scripts/Tiles/TSection.cs b/aplib.net-demo/Assets/Scripts/Tiles/TSection.cs index 1f43e725..f1113cf2 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/TSection.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/TSection.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using static Assets.Scripts.Tiles.Direction; diff --git a/aplib.net-demo/Assets/Scripts/Tiles/Tile.cs b/aplib.net-demo/Assets/Scripts/Tiles/Tile.cs index ce08d25a..addd79c0 100644 --- a/aplib.net-demo/Assets/Scripts/Tiles/Tile.cs +++ b/aplib.net-demo/Assets/Scripts/Tiles/Tile.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Util/Area.cs b/aplib.net-demo/Assets/Scripts/Util/Area.cs index a6a69d93..ed9d444a 100644 --- a/aplib.net-demo/Assets/Scripts/Util/Area.cs +++ b/aplib.net-demo/Assets/Scripts/Util/Area.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Util/CopyLocalTransform.cs b/aplib.net-demo/Assets/Scripts/Util/CopyLocalTransform.cs index 23c5e313..a46b8243 100644 --- a/aplib.net-demo/Assets/Scripts/Util/CopyLocalTransform.cs +++ b/aplib.net-demo/Assets/Scripts/Util/CopyLocalTransform.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Util/CopyTransform.cs b/aplib.net-demo/Assets/Scripts/Util/CopyTransform.cs index 951d38c8..61443bf5 100644 --- a/aplib.net-demo/Assets/Scripts/Util/CopyTransform.cs +++ b/aplib.net-demo/Assets/Scripts/Util/CopyTransform.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Util/DebugGlobals.cs b/aplib.net-demo/Assets/Scripts/Util/DebugGlobals.cs index a6829a01..7d4afb41 100644 --- a/aplib.net-demo/Assets/Scripts/Util/DebugGlobals.cs +++ b/aplib.net-demo/Assets/Scripts/Util/DebugGlobals.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Util/SetAsCamFollow.cs b/aplib.net-demo/Assets/Scripts/Util/SetAsCamFollow.cs index 44a6f0cf..7209a196 100644 --- a/aplib.net-demo/Assets/Scripts/Util/SetAsCamFollow.cs +++ b/aplib.net-demo/Assets/Scripts/Util/SetAsCamFollow.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Cinemachine; using UnityEngine; diff --git a/aplib.net-demo/Assets/Scripts/Util/Timer.cs b/aplib.net-demo/Assets/Scripts/Util/Timer.cs index 1f461b6c..2443c305 100644 --- a/aplib.net-demo/Assets/Scripts/Util/Timer.cs +++ b/aplib.net-demo/Assets/Scripts/Util/Timer.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/Util/WinArea.cs b/aplib.net-demo/Assets/Scripts/Util/WinArea.cs index e4d8dd04..f6f73714 100644 --- a/aplib.net-demo/Assets/Scripts/Util/WinArea.cs +++ b/aplib.net-demo/Assets/Scripts/Util/WinArea.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using UnityEngine; /// diff --git a/aplib.net-demo/Assets/Scripts/WFC/Cell.cs b/aplib.net-demo/Assets/Scripts/WFC/Cell.cs index 341aeeb1..44912706 100644 --- a/aplib.net-demo/Assets/Scripts/WFC/Cell.cs +++ b/aplib.net-demo/Assets/Scripts/WFC/Cell.cs @@ -1,4 +1,8 @@ -using Assets.Scripts.Tiles; +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + +using Assets.Scripts.Tiles; using System.Collections.Generic; using static Assets.Scripts.Tiles.Direction; diff --git a/aplib.net-demo/Assets/Scripts/WFC/Grid.cs b/aplib.net-demo/Assets/Scripts/WFC/Grid.cs index c7561970..058c3614 100644 --- a/aplib.net-demo/Assets/Scripts/WFC/Grid.cs +++ b/aplib.net-demo/Assets/Scripts/WFC/Grid.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Tiles; using System; using System.Collections.Generic; diff --git a/aplib.net-demo/Assets/Scripts/WFC/WaveFunctionCollapse.cs b/aplib.net-demo/Assets/Scripts/WFC/WaveFunctionCollapse.cs index baa75e38..6560353e 100644 --- a/aplib.net-demo/Assets/Scripts/WFC/WaveFunctionCollapse.cs +++ b/aplib.net-demo/Assets/Scripts/WFC/WaveFunctionCollapse.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using System.Collections.Generic; using ThreadSafeRandom; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/ConnectedComponentsTests.cs b/aplib.net-demo/Assets/Testing/AplibTests/ConnectedComponentsTests.cs index db29a191..10f2c603 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/ConnectedComponentsTests.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/ConnectedComponentsTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/GameplayTests.cs b/aplib.net-demo/Assets/Testing/AplibTests/GameplayTests.cs index 6494728a..8dab3c6b 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/GameplayTests.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/GameplayTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/HealthPotionTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/HealthPotionTest.cs index ef4403a3..c44fdb32 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/HealthPotionTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/HealthPotionTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/ItemSpawningTests.cs b/aplib.net-demo/Assets/Testing/AplibTests/ItemSpawningTests.cs index 793ef86c..35d58845 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/ItemSpawningTests.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/ItemSpawningTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/KeyTests.cs b/aplib.net-demo/Assets/Testing/AplibTests/KeyTests.cs index 1fee17c1..04b31eee 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/KeyTests.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/KeyTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Agents; using Aplib.Core.Belief.Beliefs; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/MeleeEnemyTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/MeleeEnemyTest.cs index f588cdb3..b1982c4e 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/MeleeEnemyTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/MeleeEnemyTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/MeleeTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/MeleeTest.cs index 2e87aeb6..94f97e3f 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/MeleeTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/MeleeTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/MyFirstAplibTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/MyFirstAplibTest.cs index 1376b9d0..628c287b 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/MyFirstAplibTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/MyFirstAplibTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/PathfindingTests.cs b/aplib.net-demo/Assets/Testing/AplibTests/PathfindingTests.cs index 1f2a86ec..b0f60036 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/PathfindingTests.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/PathfindingTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/RagePotionAplibTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/RagePotionAplibTest.cs index 8c7b12fe..c3b0c458 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/RagePotionAplibTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/RagePotionAplibTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/RangedEnemyTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/RangedEnemyTest.cs index 1ce66a2a..79a80c4c 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/RangedEnemyTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/RangedEnemyTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/RangedWeaponTest.cs b/aplib.net-demo/Assets/Testing/AplibTests/RangedWeaponTest.cs index 4c58488a..a40afcf5 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/RangedWeaponTest.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/RangedWeaponTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/AplibTests/TeleporterTests.cs b/aplib.net-demo/Assets/Testing/AplibTests/TeleporterTests.cs index beeb14d5..e33df571 100644 --- a/aplib.net-demo/Assets/Testing/AplibTests/TeleporterTests.cs +++ b/aplib.net-demo/Assets/Testing/AplibTests/TeleporterTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Aplib.Core; using Aplib.Core.Belief.Beliefs; using Aplib.Core.Belief.BeliefSets; diff --git a/aplib.net-demo/Assets/Testing/PlaymodeTests/GameLoopTests.cs b/aplib.net-demo/Assets/Testing/PlaymodeTests/GameLoopTests.cs index 2bc97b81..dc39d09a 100644 --- a/aplib.net-demo/Assets/Testing/PlaymodeTests/GameLoopTests.cs +++ b/aplib.net-demo/Assets/Testing/PlaymodeTests/GameLoopTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using NUnit.Framework; using System.Collections; using UnityEngine; diff --git a/aplib.net-demo/Assets/Testing/PlaymodeTests/RagePotionTest.cs b/aplib.net-demo/Assets/Testing/PlaymodeTests/RagePotionTest.cs index f7a938fa..e33fc869 100644 --- a/aplib.net-demo/Assets/Testing/PlaymodeTests/RagePotionTest.cs +++ b/aplib.net-demo/Assets/Testing/PlaymodeTests/RagePotionTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Items; using Entities.Weapons; using NUnit.Framework; diff --git a/aplib.net-demo/Assets/Testing/PlaymodeTests/RangedWeaponTest.cs b/aplib.net-demo/Assets/Testing/PlaymodeTests/RangedWeaponTest.cs index d26e8cad..4db1db3d 100644 --- a/aplib.net-demo/Assets/Testing/PlaymodeTests/RangedWeaponTest.cs +++ b/aplib.net-demo/Assets/Testing/PlaymodeTests/RangedWeaponTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using NUnit.Framework; using System.Collections; using UnityEngine; diff --git a/aplib.net-demo/Assets/Testing/PlaymodeTests/SetStartTilePropertyTrueTests.cs b/aplib.net-demo/Assets/Testing/PlaymodeTests/SetStartTilePropertyTrueTests.cs index 0e5f9cd2..68753f2d 100644 --- a/aplib.net-demo/Assets/Testing/PlaymodeTests/SetStartTilePropertyTrueTests.cs +++ b/aplib.net-demo/Assets/Testing/PlaymodeTests/SetStartTilePropertyTrueTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Assets.Scripts.Tiles; using LevelGeneration; using NUnit.Framework; diff --git a/aplib.net-demo/Assets/Testing/PlaymodeTests/WeaponAnimateTest.cs b/aplib.net-demo/Assets/Testing/PlaymodeTests/WeaponAnimateTest.cs index 714828fc..d866f39c 100644 --- a/aplib.net-demo/Assets/Testing/PlaymodeTests/WeaponAnimateTest.cs +++ b/aplib.net-demo/Assets/Testing/PlaymodeTests/WeaponAnimateTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using Entities.Weapons; using NUnit.Framework; using System.Collections; diff --git a/aplib.net-demo/Assets/Testing/UnitTests/ConfigurationTests.cs b/aplib.net-demo/Assets/Testing/UnitTests/ConfigurationTests.cs index 8ea6b2da..f9ea7d75 100644 --- a/aplib.net-demo/Assets/Testing/UnitTests/ConfigurationTests.cs +++ b/aplib.net-demo/Assets/Testing/UnitTests/ConfigurationTests.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using NUnit.Framework; using UnityEngine; diff --git a/aplib.net-demo/Assets/Testing/UnitTests/KeyUnitTest.cs b/aplib.net-demo/Assets/Testing/UnitTests/KeyUnitTest.cs index 67bfc1d8..38f19e93 100644 --- a/aplib.net-demo/Assets/Testing/UnitTests/KeyUnitTest.cs +++ b/aplib.net-demo/Assets/Testing/UnitTests/KeyUnitTest.cs @@ -1,3 +1,7 @@ +// This program has been developed by students from the bachelor Computer Science at Utrecht +// University within the Software Project course. +// Copyright Utrecht University (Department of Information and Computing Sciences) + using NUnit.Framework; using UnityEngine;