Skip to content

Instantly share code, notes, and snippets.

View Zodt's full-sized avatar
🇷🇸

Roman Vorontsov Zodt

🇷🇸
  • Finstar LLC
  • Belgrade, Serbia
  • 17:45 (UTC +02:00)
  • X @R_3pV
View GitHub Profile
using System.Collections;
using System.Collections.Generic;
namespace DotNetDesignPatternDemos.Structural.Proxy
{
class Creature
{
public byte Age;
public int X, Y;
}