﻿using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

public class menuinsa : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }


    [MenuItem("MenuINSA/QCM/question à choix multiple")]
    static public void coucou()
    {
       Instantiate(Resources.Load("QCM/Prefabs/Generator QCM"));


    }
    [MenuItem("MenuINSA/QCM/question à reponse ouverte")]
    static public void questioncourte()
    {
        Instantiate(Resources.Load("QCM/Prefabs/CanvasOpenQuestion"));


    }

}
