mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 04:15:36 +00:00
Merge remote-tracking branch 'refs/remotes/origin/development' into pr/1334
# Conflicts resolved: # Engine/source/console/consoleFunctions.cpp
This commit is contained in:
commit
b3662d801a
42 changed files with 606 additions and 115 deletions
|
|
@ -61,7 +61,7 @@ CodeBlock::CodeBlock()
|
|||
CodeBlock::~CodeBlock()
|
||||
{
|
||||
// Make sure we aren't lingering in the current code block...
|
||||
AssertFatal(smCurrentCodeBlock != this, "CodeBlock::~CodeBlock - Caught lingering in smCurrentCodeBlock!")
|
||||
AssertFatal(smCurrentCodeBlock != this, "CodeBlock::~CodeBlock - Caught lingering in smCurrentCodeBlock!");
|
||||
|
||||
if(name)
|
||||
removeFromCodeList();
|
||||
|
|
|
|||
16
Engine/source/console/consoleFunctions.h
Normal file
16
Engine/source/console/consoleFunctions.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef _CONSOLFUNCTIONS_H_
|
||||
#define _CONSOLFUNCTIONS_H_
|
||||
|
||||
#ifndef _STRINGFUNCTIONS_H_
|
||||
#include "core/strings/stringFunctions.h"
|
||||
#endif
|
||||
|
||||
bool isInt(const char* str);
|
||||
|
||||
bool isFloat(const char* str);
|
||||
|
||||
bool isValidIP(const char* ip);
|
||||
|
||||
bool isValidPort(U16 port);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue