Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
547 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #include "cbase.h"
  7. void GetYouTubeAPIKey( const char *pGameDir, bool bOnSteamPublic, const char **ppSource, const char **ppDeveloperTag, const char **ppDeveloperKey )
  8. {
  9. // Put your YouTube Developer key here if you're going to upload videos to YouTube
  10. *ppSource = "your Mod Name";
  11. *ppDeveloperTag = "Your mod tag";
  12. *ppDeveloperKey = "Your mod's developer key";
  13. }