blob: 8b99be1c2428a9e9b85bfd5b133bdf47050a001f (
plain)
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
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
namespace StardewModdingAPI
{
public static class Extensions
{
public static Random Random = new Random();
public static bool IsKeyDown(this Keys key)
{
return Keyboard.GetState().IsKeyDown(key);
}
public static Color RandomColour()
{
return new Color(Random.Next(0, 255), Random.Next(0, 255), Random.Next(0, 255));
}
public static string ToSingular(this IEnumerable<Object> enumerable, string split = ", ")
{
string result = string.Join(split, enumerable);
return result;
}
public static bool IsInt32(this string s)
{
int i;
return Int32.TryParse(s, out i);
}
public static Int32 AsInt32(this string s)
{
return Int32.Parse(s);
}
public static int GetHash(this IEnumerable enumerable)
{
string s = string.Empty;
foreach (var v in enumerable)
{
s += v.GetHashCode();
}
return s.GetHashCode();
}
}
}
|