SchoolFightingSimple/Assets/Scripts/JsonManager.cs

17 lines
233 B
C#
Raw Normal View History

2023-08-18 01:03:41 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2023-08-20 03:31:31 +02:00
public class JsonManager : MonoBehaviour
2023-08-18 01:03:41 +02:00
{
public void LoadChar()
{
}
}
public class Charecter
{
public int MyProperty { get; set; }
}