Files
BABA_YAGA/Assets/Invector-3rdPersonController/Shooter/Scripts/Editor/ShooterDefineSymbols.cs
2026-05-30 09:16:35 +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" };
}
}
}
}