14 lines
197 B
Swift
14 lines
197 B
Swift
//
|
|
// Units.swift
|
|
// GoldWars
|
|
//
|
|
// Created by Chauntalle Schüle on 20.04.20.
|
|
// Copyright © 2020 SP2. All rights reserved.
|
|
//
|
|
|
|
enum Unit{
|
|
case General
|
|
case Defence
|
|
case Attack
|
|
}
|