15 lines
492 B
C#
15 lines
492 B
C#
|
|
//--------------------------------------------------------------------------//
|
||
|
|
// Copyright 2023-2025 Chocolate Dinosaur Ltd. All rights reserved. //
|
||
|
|
// For full documentation visit https://www.chocolatedinosaur.com //
|
||
|
|
//--------------------------------------------------------------------------//
|
||
|
|
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace ChocDino.UIFX.Demos
|
||
|
|
{
|
||
|
|
internal class DemoInfo : MonoBehaviour
|
||
|
|
{
|
||
|
|
public string title = string.Empty;
|
||
|
|
public string slug = string.Empty;
|
||
|
|
}
|
||
|
|
}
|