ObsClientComponent.cs 229 B

1234567891011
  1. using OBS;
  2. namespace ET
  3. {
  4. public class ObsClientComponent : Entity, IAwake, IDestroy
  5. {
  6. public static ObsClientComponent Instance;
  7. public ObsConfig ObsConfig;
  8. public ObsClient ObsClient;
  9. }
  10. }