This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
ovadi240
/
GAMEN3_ExamProject_DiegoOvalle_B2GP
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Árvore:
2565b465b9
Ramos
Etiquetas
FinalVersion
master
GAMEN3_ExamProj...
/
Assets
/
TutorialInfo
/
Scripts
Diego Ovalle
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
há 1 semana atrás
..
Editor
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
há 1 semana atrás
Editor.meta
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
há 1 semana atrás
Readme.cs
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
há 1 semana atrás
Readme.cs.meta
ce0ef81ec0
Initial commit: Unity Project structure and .gitignore
há 1 semana atrás
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;
}
}