This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
ovadi240
/
GAMEN3_ExamProject_DiegoOvalle_B2GP
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
45799bcaf4
Branches
Tags
FinalVersion
master
GAMEN3_ExamProj...
/
Assets
/
TutorialInfo
/
Scripts
Diego Ovalle
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
il y a 1 semaine
..
Editor
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
il y a 1 semaine
Editor.meta
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
il y a 1 semaine
Readme.cs
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
il y a 1 semaine
Readme.cs.meta
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
il y a 1 semaine
Readme.cs
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;
}
}