Skip to content
Snippets Groups Projects
Commit c7f5fafa authored by MrWarzo's avatar MrWarzo
Browse files

Commentaires

parent d7eda555
No related merge requests found
......@@ -5,6 +5,9 @@ using TMPro;
using Assets.Scripts.Simon_Say;
using System;
/*
* Script controller du frigo pour controller son animation et la pizza en fonction des états du minijeu
*/
public class FridgeController : MonoBehaviour
{
[SerializeField]
......
......@@ -3,7 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using System;
/*
* Script minijeu du Breakable, gère le onWin/onLose et les fonctions spéciales associées.
*/
namespace Game.MinigameScript
{
public class Breakable : MiniGame
......
......@@ -3,7 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using System;
/*
* Script minijeu du Fridge, gère le onWin/onLose et les fonctions spéciales associées.
*/
namespace Game.MinigameScript
{
public class Fridge : MiniGame
......
......@@ -5,6 +5,9 @@ using TMPro;
using UnityEngine;
using Random = UnityEngine.Random;
/*
* Script minijeu du Keypad, gère le onWin/onLose et les fonctions spéciales associées.
*/
namespace Game.MinigameScript
{
public class Keypad : MiniGame
......
......@@ -3,7 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using System;
/*
* Script minijeu du Lever, gère le onWin/onLose et les fonctions spéciales associées.
*/
namespace Game.MinigameScript
{
public class Lever : MiniGame
......
......@@ -2,6 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/*
* Script de base des minijeu, abstract
*/
public abstract class MiniGame : MonoBehaviour
{
[SerializeField]
......
using System;
/*
* Script minijeu du SimonSay, gère le onWin/onLose et les fonctions spéciales associées.
*/
namespace Game.MinigameScript
{
public class SimonSay : MiniGame
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment