Jimmy Tremblay-Bernier d480e58ec3 Project created and bunch of setup
- Imported a lot of assets to create the world (will need to be cleaned later on)
- Imported all the packages needed and wanted for the project
- Configure the loading pipeline for the game using SOAP scriptable objects events
- Added the scenes to the build
- Partially converted the assets to URP
2023-10-13 15:56:32 -04:00

17 lines
302 B
C#

using System;
using UnityEngine;
public class Readme : ScriptableObject
{
public Texture2D icon;
public string title;
public Section[] sections;
public bool loadedLayout;
[Serializable]
public class Section
{
public string heading, text, linkText, url;
}
}