game: better comments
This commit is contained in:
parent
41d5629bf3
commit
4e3e0c16c3
|
@ -1,6 +1,9 @@
|
|||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// class for anything related to colour spaces and models
|
||||
/// </summary>
|
||||
public static class Colorimetry
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
using UnityEngine.UIElements;
|
||||
|
||||
/// <summary>
|
||||
/// class that inherits from OklchColourPickerUI for the demo colour picker on the DefaultView
|
||||
/// </summary>
|
||||
public class DemoOklchColourPicker : OklchColourPickerUI
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
using System.Linq;
|
||||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// local player data structure/class
|
||||
/// </summary>
|
||||
public class LocalPlayerData
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using UnityEngine.UIElements;
|
||||
|
||||
/// <summary>
|
||||
/// singleton for a single source of truth game state and flow management
|
||||
/// class that handles the side view ui
|
||||
/// </summary>
|
||||
public class SideViewUI : MonoBehaviour
|
||||
{
|
||||
|
|
Reference in a new issue