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.
22 lines
655 B
22 lines
655 B
//============ Copyright (c) Valve Corporation, All rights reserved. ============ |
|
// |
|
// Core definitions required by tilegen code. |
|
// |
|
//=============================================================================== |
|
|
|
#ifndef TILEGEN_CORE_H |
|
#define TILEGEN_CORE_H |
|
|
|
#if defined( COMPILER_MSVC ) |
|
#pragma once |
|
#endif |
|
|
|
////////////////////////////////////////////////////////////////////////// |
|
// Constants |
|
////////////////////////////////////////////////////////////////////////// |
|
static const int MAX_TILEGEN_IDENTIFIER_LENGTH = 64; |
|
|
|
DECLARE_LOGGING_CHANNEL( LOG_TilegenLayoutSystem ); |
|
DECLARE_LOGGING_CHANNEL( LOG_TilegenGeneral ); |
|
|
|
#endif // TILEGEN_CORE_H |