ISurface.cs 106 B

123456789
  1. using UnityEngine;
  2. namespace HQFPSWeapons
  3. {
  4. interface ISurface
  5. {
  6. Texture GetSurfaceTexture();
  7. }
  8. }