mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-22 18:12:34 +02:00
15 lines
284 B
C
15 lines
284 B
C
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
// Simple debugging console currently residing in the Logging window. Not used much.
|
|
|
|
#ifndef _CONSOLE_H
|
|
#define _CONSOLE_H
|
|
|
|
void Console_Submit(const char *cmd);
|
|
|
|
#endif
|
|
|