mirror of
https://github.com/tappollo/WWDC.git
synced 2026-06-10 23:29:39 +08:00
18 lines
277 B
Swift
18 lines
277 B
Swift
//
|
|
// PUIAnnotationWindow.swift
|
|
// WWDC
|
|
//
|
|
// Created by Guilherme Rambo on 28/05/17.
|
|
// Copyright © 2017 Guilherme Rambo. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class PUIAnnotationWindow: NSWindow {
|
|
|
|
override var canBecomeKey: Bool {
|
|
return true
|
|
}
|
|
|
|
}
|