openspades/Sources/Client/IInputInterface.h
2013-08-18 16:18:06 +09:00

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() {}
};
}
}