24 lines
523 B
C#
24 lines
523 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Giveeachcaranumber : MonoBehaviour
|
|
{
|
|
public static List <Giveeachcaranumber> giveeachcaranumbers = new List <Giveeachcaranumber>();
|
|
/// <summary>
|
|
/// ¸øÿ¸öÉ豸·ÖÅäÊýÁ¿
|
|
/// </summary>
|
|
public string number;
|
|
void Start()
|
|
{
|
|
giveeachcaranumbers.Add(this);
|
|
number = giveeachcaranumbers.Count.ToString();
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|