M: Changing organization of project
This commit is contained in:
29
Assets/Scripts/Config/GlobalConfig.cs
Normal file
29
Assets/Scripts/Config/GlobalConfig.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class GlobalConfig {
|
||||
private static GlobalConfig _instance;
|
||||
public static string AppName = "T-VIR";
|
||||
public static string AppVersion = "0.1";
|
||||
public static string LastEditedDate = "02/11/2023 - 11:33";
|
||||
|
||||
public GlobalConfig()
|
||||
{
|
||||
if (GlobalConfig._instance == null)
|
||||
{
|
||||
this.Initialize();
|
||||
}
|
||||
}
|
||||
|
||||
public static GlobalConfig GetInstance()
|
||||
{
|
||||
return GlobalConfig._instance;
|
||||
}
|
||||
|
||||
bool Initialize()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
11
Assets/Scripts/Config/GlobalConfig.cs.meta
Normal file
11
Assets/Scripts/Config/GlobalConfig.cs.meta
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d75480a71c557894997198baf39d38c5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Reference in New Issue
Block a user