11 lines
255 B
C#
11 lines
255 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public static class LayerNames
|
|
{
|
|
public static string Enemies => "Enemies";
|
|
public static string Ground => "Ground";
|
|
public static string Player => "Player";
|
|
}
|