-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstructorExamples.cs
59 lines (43 loc) · 1.55 KB
/
ConstructorExamples.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyExampleLibrary.Objects;
namespace MyExampleLibrary
{
/*Using:
* Objects.cs
*/
class ConstructorExamples
{
static void ConstructorExamplesMethod()
{
Game Halo = new Game("Halo", "Xbox", "A");
VectorTestings();
}
static void VectorTestings()
{
Vector2D playerPosition = new Vector2D();
playerPosition.x = 5;
playerPosition.CheckPos();
Console.ReadLine();
}
static void CreateNewCock()
{
Console.Write("Choose your cock's name: ");
string cockName = Console.ReadLine();
Console.Write("Choose your cock's size: ");
float cockSize = Convert.ToInt32(Console.ReadLine());
Console.Write("Choose your cock's color: ");
string cockColor = Console.ReadLine();
Cock userCock = new Cock(cockSize, cockColor, cockName);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Here are your cock details: ");
Console.WriteLine("\nName: " + userCock.name + ". Size: " + userCock.size + "cm. Color: " + userCock.color);
if (userCock.isBig() && !userCock.isHuge()) Console.WriteLine("Holy fuck your cock is big!");
if (userCock.isHuge()) Console.WriteLine("HOLY FUCK YOUR COCK IS HUGE!!");
Console.ReadLine();
}
}
}