mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-24 08:19:49 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
11 lines
226 B
C#
11 lines
226 B
C#
namespace Sandbox;
|
|
|
|
public abstract partial class Component
|
|
{
|
|
public interface IMaterialSetter
|
|
{
|
|
public void SetMaterial( Material material, int triangle = -1 );
|
|
public Material GetMaterial( int triangle = -1 );
|
|
}
|
|
}
|