mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-04-23 00:58:35 +02:00
17 lines
287 B
Swift
17 lines
287 B
Swift
//
|
|
// OrganismProtocol.swift
|
|
// LegacyDemo
|
|
//
|
|
// Created by John Rommel Estropia on 2015/06/27.
|
|
// Copyright © 2018 John Rommel Estropia. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol OrganismProtocol: AnyObject {
|
|
|
|
var dna: Int64 { get set }
|
|
|
|
func mutate()
|
|
}
|