Advertisement
SuperMeatBoy

Untitled

Aug 3rd, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. public class Config : MonoBehaviour, IConfig
  2. {
  3.     [SerializeField] bool _param;
  4.     public bool param => _param;
  5. }
  6.  
  7. [Refs, Unique, ComponentName("Config")]
  8. public interface IConfig
  9. {
  10.     bool param{ get; }    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement