Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add headers #113

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/BuildNavMesh.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Configuration.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Doors/Door.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Doors/TempItemID.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Enemy/AbstractEnemy.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Enemy/MeleeEnemy.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Enemy/RangedEnemy.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/EntitySound.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/HealthComponent.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/PathFind.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Player/MouseLock.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Player/Movement.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Player/PlayerLogic.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Player/ShowPath.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Weapons/MeleeWeapon.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Entities/Weapons/Weapon.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/AmmoPouch.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/Equipment.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/EquipmentInventory.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/Inventory.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/Item.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/Key.cs
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Inventory/KeyRing.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/AmmoItem.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/BeforeDestroyKey.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/CubeItem.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/EndItem.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/HealthPotion.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/PickupableItem.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/PickupableKey.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/RagePotion.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/Items/SpawnWave.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/LevelGeneration/EnemySpawner.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
6 changes: 5 additions & 1 deletion aplib.net-demo/Assets/Scripts/LevelGeneration/GridConfig.cs
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
6 changes: 5 additions & 1 deletion aplib.net-demo/Assets/Scripts/LevelGeneration/RoomObjects.cs
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/MainMenu/GameCanvas.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/MainMenu/MainMenuCanvas.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/MainMenu/RenderQuality.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
4 changes: 4 additions & 0 deletions aplib.net-demo/Assets/Scripts/MainMenu/VolumeSlider.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
Loading