21 lines
302 B
C++
21 lines
302 B
C++
//
|
|
// IInputInterface.h
|
|
// OpenSpades
|
|
//
|
|
// Created by yvt on 7/11/13.
|
|
// Copyright (c) 2013 yvt.jp. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
namespace spades {
|
|
namespace client {
|
|
/** input interface
|
|
* @obsolete */
|
|
class IInputInterface {
|
|
public:
|
|
virtual ~IInputInterface() {}
|
|
};
|
|
}
|
|
}
|