PickableSlot.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Slot.hpp"
5 
6 namespace iv
7 {
8 
14 {
15 public:
17 using Slot::instance;
18 
19  PickableSlot( Instance * inst );
20 
23 
25 
26 protected:
27  // Position_InputNode
28  virtual bool position_test( int2 input_pos ) override;
29 
30 protected:
32 
33 };
34 
35 }