zombie_mp/Assets/HQ FPS Weapons/Scripts/Surface Management/ISurface.cs
Sewmina Dilshan 68183e5317 initial
2021-08-23 13:28:33 +05:30

9 lines
106 B
C#

using UnityEngine;
namespace HQFPSWeapons
{
interface ISurface
{
Texture GetSurfaceTexture();
}
}