initial commit
This commit is contained in:
9
Models/Direction.cs
Normal file
9
Models/Direction.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace BakeryGame.Models;
|
||||
|
||||
public enum Direction
|
||||
{
|
||||
Left,
|
||||
Right,
|
||||
Up,
|
||||
Down
|
||||
}
|
||||
15
Models/EnvItem.cs
Normal file
15
Models/EnvItem.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Raylib_cs;
|
||||
|
||||
public struct EnvItem
|
||||
{
|
||||
public EnvItem(Rectangle rect, Color color, bool canCollide)
|
||||
{
|
||||
Rect = rect;
|
||||
Color = color;
|
||||
CanCollide = canCollide;
|
||||
}
|
||||
|
||||
public Rectangle Rect;
|
||||
public Color Color;
|
||||
public bool CanCollide;
|
||||
}
|
||||
Reference in New Issue
Block a user