mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 05:24:06 +02:00
temporary hack fix to busted build
This commit is contained in:
parent
6f0035b297
commit
fdba349d9b
1 changed files with 21 additions and 0 deletions
21
interface/src/Transmitter.h
Normal file
21
interface/src/Transmitter.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
//
|
||||
// Transmitter.h
|
||||
// interface
|
||||
//
|
||||
// Created by Brad Hefta-Gaub on 5/21/2013
|
||||
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef __interface__transmitter__
|
||||
#define __interface__transmitter__
|
||||
|
||||
|
||||
class Transmitter {
|
||||
public:
|
||||
void processIncomingData(unsigned char* buffer, int size) { };
|
||||
void renderLevels(int x, int y) { };
|
||||
void resetLevels(int x = 0, int y = 0) { };
|
||||
bool isConnected() const { return false; };
|
||||
glm::vec3 getEstimatedRotation() const { return glm::vec3(0, 0, 0); };
|
||||
};
|
||||
#endif
|
Loading…
Reference in a new issue