improve support, refactor steamworks sdk, payday2

This commit is contained in:
Onni Kukkonen
2022-06-29 21:31:52 +03:00
parent 9d9406ca44
commit 36fe74eeb9
51 changed files with 17117 additions and 13 deletions

27
ext/steam/steamuniverse.h Normal file
View File

@@ -0,0 +1,27 @@
//========= Copyright <20> 1996-2008, Valve LLC, All rights reserved. ============
//
// Purpose:
//
//=============================================================================
#ifndef STEAMUNIVERSE_H
#define STEAMUNIVERSE_H
#ifdef _WIN32
#pragma once
#endif
// Steam universes. Each universe is a self-contained Steam instance.
enum EUniverse
{
k_EUniverseInvalid = 0,
k_EUniversePublic = 1,
k_EUniverseBeta = 2,
k_EUniverseInternal = 3,
k_EUniverseDev = 4,
// k_EUniverseRC = 5, // no such universe anymore
k_EUniverseMax
};
#endif // STEAMUNIVERSE_H