mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-04-24 17:48:39 +02:00
19 lines
238 B
Swift
19 lines
238 B
Swift
//
|
|
// StrokeQuad.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 5/4/24.
|
|
//
|
|
|
|
import MetalKit
|
|
import Foundation
|
|
|
|
final class StrokeQuad: NSObject, Codable {
|
|
var quad: Quad
|
|
|
|
init(quad: Quad) {
|
|
self.quad = quad
|
|
}
|
|
}
|
|
|