mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 03:52:55 +02:00
17 lines
288 B
C++
17 lines
288 B
C++
//
|
|
// voxels_Log.cpp
|
|
// hifi
|
|
//
|
|
// Created by Tobias Schwinger on 4/17/13.
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#include "voxels_Log.h"
|
|
|
|
#include <cstdio>
|
|
|
|
namespace voxels_lib {
|
|
using namespace std;
|
|
|
|
int (* printLog)(char const*, ...) = & printf;
|
|
}
|