mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-24 04:50:58 +00:00
12 lines
145 B
C#
12 lines
145 B
C#
using UnityEngine;
|
|
|
|
public class DieValue : MonoBehaviour
|
|
{
|
|
public int value;
|
|
|
|
public int getValue() {
|
|
|
|
return value;
|
|
}
|
|
}
|