Files
BABA_YAGA/Assets/Scripts/Player/Editor/ShooterDefineSymbols.cs
2026-06-04 10:42:23 +07:00

17 lines
383 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Invector.DefineSymbolsManager
{
public class ShooterDefineSymbols : InvectorDefineSymbols
{
public override List<string> GetSymbols
{
get
{
return new List<string>() { "INVECTOR_SHOOTER" };
}
}
}
}