This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mode LastWriteTime Length Name | |
---- ------------- ------ ---- | |
d----- 5/25/2025 7:38 PM 0-Alter_OverrideSounds | |
d----- 5/25/2025 7:38 PM 0-CustomParticleLoader | |
d----- 5/25/2025 9:30 PM 0-Quartz | |
d----- 5/25/2025 7:38 PM 0-SCore | |
d----- 5/25/2025 7:38 PM 0-XNPCCo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[System.Serializable] | |
public abstract class AssetEntry { | |
public AssetReference AssetReference = new AssetReference(); | |
public string Path; | |
public abstract System.Type Type { get; } | |
public abstract UnityEngine.Object AssetObject { get; } | |
} | |
[System.Serializable] | |
public class AssetEntry<T> : AssetEntry where T : UnityEngine.Object { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
namespace PixelComrades { | |
public static partial class GameData { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using SimpleJSON; | |
namespace PixelComrades { | |
public class JsonDB { | |
private const string Id = "ID"; | |
private const string EnumProp = "hasIndex"; |