mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-24 04:50:58 +00:00
16 lines
205 B
C#
16 lines
205 B
C#
using System;
|
|
|
|
namespace SaveSystem
|
|
{
|
|
[Serializable]
|
|
public class GameData
|
|
{
|
|
|
|
//Add field for your data
|
|
|
|
public GameData()
|
|
{
|
|
//Initialize your data
|
|
}
|
|
}
|
|
} |