This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Hydrogen import * | |
from HydrogenLayouts import HColumnLayout, HBarLayout | |
class Camera(object): | |
def __init__(self, name): | |
self.name = name | |
self.sensitivity = 0.0 | |
self.is_on = False | |
def __str__(self): |