Skip to content
This repository has been archived by the owner on Apr 17, 2021. It is now read-only.

Commit

Permalink
Add PaintTile.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SignatureBeef committed May 25, 2016
1 parent 1e36dcc commit 20c779a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Core/PluginHooks/PaintTile.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using OTA.Plugin;

namespace TDSM.Core.Plugin.Hooks
{
public static partial class TDSMHookArgs
{
public struct PaintTile
{
public int X { get; set; }

public int Y { get; set; }

public byte Colour { get; set; }
}
}

public static partial class TDSMHookPoints
{
public static readonly HookPoint<TDSMHookArgs.PaintTile> PaintTile = new HookPoint<TDSMHookArgs.PaintTile>();
}
}

0 comments on commit 20c779a

Please sign in to comment.