Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KodenejmBerni authored Jul 1, 2022
0 parents commit e46b49f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
Binary file added YeeHatMod/content/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added YeeHatMod/content/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added YeeHatMod/content/yee_hat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions YeeHatMod/mod.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Mod>
<WorkshopID>2824104787</WorkshopID>
</Mod>
19 changes: 19 additions & 0 deletions YeeHatMod/src/YeeHatMod.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using DuckGame;
using System.Reflection;

[assembly: AssemblyTitle("Yee Hat")]
[assembly: AssemblyCompany("KodenejmBerni")]
[assembly: AssemblyDescription("This mod adds more Yee to your life.")]
[assembly: AssemblyVersion("1.0.0.0")]

namespace DuckGame.YeeHatMod
{
public class YeeHatMod : Mod
{
protected override void OnPostInitialize()
{
Teams.core.teams.Add(new Team("Yee", Mod.GetPath<YeeHatMod>("yee_hat"), false, false, new Vec2()));
base.OnPostInitialize();
}
}
}

0 comments on commit e46b49f

Please sign in to comment.