syphon-core 0.1.2

Core Objective-C bindings for Syphon on macOS
//
//  Syphon.modulemap
//  Syphon
//
//  Created by Tom Butterworth on 03/10/2023.
//

framework module Syphon {
    umbrella header "Syphon.h"

    export *
    module * {
        export *
    }

    explicit module SyphonSubclassing {
        header "SyphonSubclassing.h"
        export *
    }
}