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

Commit 20c779a

Browse files
committed
Add PaintTile.cs
1 parent 1e36dcc commit 20c779a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Core/PluginHooks/PaintTile.cs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using OTA.Plugin;
2+
3+
namespace TDSM.Core.Plugin.Hooks
4+
{
5+
public static partial class TDSMHookArgs
6+
{
7+
public struct PaintTile
8+
{
9+
public int X { get; set; }
10+
11+
public int Y { get; set; }
12+
13+
public byte Colour { get; set; }
14+
}
15+
}
16+
17+
public static partial class TDSMHookPoints
18+
{
19+
public static readonly HookPoint<TDSMHookArgs.PaintTile> PaintTile = new HookPoint<TDSMHookArgs.PaintTile>();
20+
}
21+
}

0 commit comments

Comments
 (0)